本篇文章給大家分享的是有關(guān)asp.net core中TagHelper+Form如何使用,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
在常山等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務理念,為客戶提供網(wǎng)站制作、網(wǎng)站設(shè)計 網(wǎng)站設(shè)計制作按需網(wǎng)站設(shè)計,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站建設(shè),全網(wǎng)整合營銷推廣,外貿(mào)網(wǎng)站建設(shè),常山網(wǎng)站建設(shè)費用合理。
TagHelper能夠去替代原來在@Html幫助類中的一些功能,比如form,a等標簽,而且寫在html代碼中更加的舒服,符合html的語法。
@using (Html.BeginForm("Index", "Home", FormMethod.Post,, new { Class = "form-horizontal" }))
{
}
那么,在Html幫助類中最有用的Model與Tag的轉(zhuǎn)換,自動表單的生成,微軟是否也給出了解決方案呢?答案是肯定的。Microsoft還專門分出了單獨的說明頁面來講述TagHelper的自動表單生成,英文功底好的同學可以直接查看MS的官方文檔《Introduction to using tag helpers in forms in ASP.NET Core》。
文檔中提及了對于表單控件,我們可以直接在asp-for屬性中直接填寫Model中的屬性名,即可自動生成對應的控件類型和填入默認值。
ok,我們來嘗試一下。
(1)創(chuàng)建ViewModel類
public class SignUpViewModel
{
[Required]
[Display(Name ="用戶名")]
[MaxLength(30,ErrorMessage = "用戶名不能超過30")]
public string UserName { get; set; }
[Required]
[DataType(DataType.Password)]
[RegularExpression(@"((?=.*\d)(?=.*\D)|(?=.*[a-zA-Z])(?=.*[^a-zA-Z]))^$",ErrorMessage ="密碼至少包含兩種以上字符")]
[Display(Name ="密碼")]
public string Password { get; set; }
[DataType(DataType.MultilineText)]
public string Description { get; set; }
}
對于寫過asp.net mvc的開發(fā)者肯定不會陌生這種驗證方式~~
(2)編寫TagHelper標簽
為了與Html區(qū)分,我寫了兩者的比較版本
(3)驗證表單
public IActionResult SignUp(SignUpViewModel model)
{
if (ModelState.IsValid)
{
return RedirectToAction("Index");
}
else
{
return RedirectToAction("Index",model);
}
}
(4)結(jié)果
ok,如果覺得這樣就結(jié)束了,那么就不算TagHelper高級應用,那只能充其量在翻譯MS的文檔罷了。
那么,重點來了,既然MS能讓我們創(chuàng)建自定義TagHelper,那我為什么不能在TagHelper當中使用Model的值呢?于是我開始在asp.net core開源github項目中尋找,終于是找到了ImputTagHelper的源碼。
在源碼中,由三個對象一起來完成標簽的生成
protected IHtmlGenerator Generator { get; }
[HtmlAttributeNotBound]
[ViewContext]
public ViewContext ViewContext { get; set; }
///
/// An expression to be evaluated against the current model.
///
[HtmlAttributeName(ForAttributeName)]
public ModelExpression For { get; set; }
三個對象均是通過依賴注入的方式來實現(xiàn)對象的生成。
(1)其中Generator為發(fā)生器,負責生成各種類型的標簽
(2)ViewContext為視圖上下文,獲取視圖上下文相關(guān)信息
(3)For獲取到當前Model的相關(guān)信息,包括Required等關(guān)鍵信息
有了這三個標簽,我們也可以在自定義的標簽助手中獲取你想要的Model信息,比如我可以向form中填入Model信息,讓標簽助手自動生成form表單中的所有內(nèi)容;也可以向ul標簽中填入樹信息,讓其自動生成樹列表等等
如下就是我編寫的自動生成表單
//自定義標簽助手名為bg-form
[HtmlTargetElement("bg-form")]
public class FormTagHelper : TagHelper
{
[ViewContext]
[HtmlAttributeNotBound]
public ViewContext ViewContext { get; set; }
[HtmlAttributeName("asp-for")]
public ModelExpression For { get; set; }
protected IHtmlGenerator Generator { get; }
public FormTagHelper(IHtmlGenerator generator)
{
Generator = generator;
}
[HtmlAttributeName("asp-controller")]
public string Controller { get; set; }
[HtmlAttributeName("asp-action")]
public string Action { get; set; }
//異步方法
public override async Task ProcessAsync(TagHelperContext context, TagHelperOutput output)
{
output.TagName = "form";
if (!string.IsNullOrWhiteSpace(Controller))
{
output.Attributes.Add("action", "/" + Controller + "/" + Action);
}
output.Attributes.Add("class", "form-horizontal");
//獲取子屬性
var props = For.ModelExplorer.Properties;
foreach (var prop in props)
{
//生成表單
var div = new TagBuilder("div");
div.AddCssClass("form-group");
var label = Generator.GenerateLabel(ViewContext, prop, null, prop.Metadata.DisplayName, null);
var input = Generator.GenerateTextBox(ViewContext, prop, prop.Metadata.PropertyName, null, null, null);
var span = Generator.GenerateValidationMessage(ViewContext, prop, prop.Metadata.PropertyName, null, ViewContext.ValidationMessageElement, null);
div.InnerHtml.AppendHtml(label);
div.InnerHtml.AppendHtml(input);
div.InnerHtml.AppendHtml(span);
output.Content.AppendHtml(div);
}
//添加按鈕
var btn = new TagBuilder("div");
btn.AddCssClass("form-group");
var submit = new TagBuilder("input");
submit.Attributes.Add("type", "submit");
submit.Attributes.Add("value", "提交");
var reset = new TagBuilder("input");
reset.Attributes.Add("type", "reset");
reset.Attributes.Add("value", "重置");
btn.InnerHtml.AppendHtml(submit);
btn.InnerHtml.AppendHtml(reset);
output.Content.AppendHtml(btn);
//將原有的內(nèi)容添加到標簽內(nèi)部
output.Content.AppendHtml(await output.GetChildContentAsync());
}
}
只要在html加入
即可自動生成表單
以上就是asp.net core中TagHelper+Form如何使用,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。