首页 > 代码库 > asp.net core 中TagHelper使用
asp.net core 中TagHelper使用
原文地址:https://docs.microsoft.com/zh-cn/aspnet/core/mvc/views/working-with-forms#the-input-tag-helper
asp.net core里面,TagHelper是一项非常人性化的封装,使得表单提交都变得很简洁。废话不多说,通过小例子对比获得优点。
Form路由标签
特点:
1、为MVC控制器action生成Html中action特性或者定义路由,常使用的标签有asp-controller,
asp-action,
asp-route
功能:
1、生成html路由功能代码。
2、生成请求验证令牌,阻止外部恶意请求,与之前[ValidateAntiForgeryToken]特性效果一样。
3、生成可选的两种请求,Html.BeginForm
and Html.BeginRouteForm。
生成Html.BeginForm请求:
<form asp-controller="Demo" asp-action="Register" method="post"> <!-- Input and Submit elements --> </form>
等同如下效果的代码:
<form method="post" action="/Demo/Register"> <!-- Input and Submit elements --> <input name="__RequestVerificationToken" type="hidden" value=http://www.mamicode.com/"<removed for brevity>" /> </form>
生成Html.BeginRouteForm请求:
<form asp-route="register" method="post">
<!-- Input and Submit elements -->
</form>
等同如下效果
<form asp-controller="Account" asp-action="Login"
asp-route-returnurl="@ViewData["ReturnUrl"]"
method="post" class="form-horizontal" role="form">
Input标签
通常使用的标签有asp-for
特点:
1、asp-for类似于mvc下面的model表达式一样的一样,等价于m => m.Property1.Property2
功能:
1、为Input元素添加ID和Name特性,并且其值为,生成asp-for特性值。
2、asp-for对应的实体字段添加后台data annotation特性
3、如果特性重复,并不会生成重复的特性
4、如果asp-for对应的实体字段有验证特性,则会生成对应的html5验证特性
常用实体字段及其特性生成html类型列举
.NET type | Input Type |
---|---|
Bool | type=”checkbox” |
String | type=”text” |
DateTime | type=”datetime” |
Byte | type=”number” |
Int | type=”number” |
Single, Double | type=”number” |
Attribute | Input Type |
---|---|
[EmailAddress] | type=”email” |
[Url] | type=”url” |
[HiddenInput] | type=”hidden” |
[Phone] | type=”tel” |
[DataType(DataType.Password)] | type=”password” |
[DataType(DataType.Date)] | type=”date” |
[DataType(DataType.Time)] | type=”time” |
asp.net core 中TagHelper使用