溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

ASP.NET MVC中MvcContrib.FluentHtml如何使用

發(fā)布時(shí)間:2021-07-15 14:53:48 來(lái)源:億速云 閱讀:175 作者:Leah 欄目:編程語(yǔ)言

ASP.NET MVC中MvcContrib.FluentHtml如何使用,針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。

ASP.NET MVC

在MvcContrib.FluentHtml的應(yīng)用中,我們隨處可以見(jiàn)到下面的代碼:

<%=this.TextBox(x=>x.Person.Name).Title("Entertheperson'sname").Label("Name:")%><br/>  ……  <%=this.Select(x=>x.Person.Gender).Options(Model.Genders).Size(5).Label("Gender:")  .Title("Selecttheperson'sgender")%><br/>  <labelidlabelid="Person_Name_Label"for="Person_Name">Name:</label> <inputidinputid="Person_Name"type="text"value="Jeremy"title="Entertheperson'sname"name="Person.Name"maxlength="50"/> .  <selectidselectid="Person_Gender"title="Selecttheperson'sgender"size="5"name="Person.Gender"> <optionvalueoptionvalue="M"selected="selected">Male</option> <optionvalueoptionvalue="F">Female</option> </select>


這種實(shí)現(xiàn)編程方式就是"Fluent Interface",這并不是什么新概念,2005年Eric Evans 和Martin Fowler就為這種實(shí)現(xiàn)方式命名.源文檔 <http://www.martinfowler.com/bliki/FluentInterface.html> 可以通過(guò)維基百科中對(duì)Fluent Interface的描述獲得一個(gè)基本的了解:In software engineering, a fluent interface (as first coined by Eric Evans and Martin Fowler) is a way of implementing an object oriented API in a way that aims to provide for more readable code.

我們分解上面的話:
◆它是面向?qū)ο驛PI的一種實(shí)現(xiàn)方式
◆目的是增加代碼的可讀性

既然我們最熟悉的是StringBuilder,我們就從這個(gè)線索追下去:打開(kāi)Reflector,很容易找到StringBuilder的Append方法:

publicStringBuilderAppend(stringvalue)  {  if(value!=null)  {  stringstringValue=this.m_StringValue;  IntPtrcurrentThread=Thread.InternalGetCurrentThread();  if(this.m_currentThread!=currentThread)  {  stringstringValue=string.GetStringForStringBuilder(stringValue,stringValue.Capacity);  }  intlength=stringValue.Length;  intrequiredLength=length+value.Length;  if(this.NeedsAllocation(stringValue,requiredLength))  {  stringnewString=this.GetNewString(stringValue,requiredLength);  newString.AppendInPlace(value,length);  this.ReplaceString(currentThread,newString);  }  else  {  stringValue.AppendInPlace(value,length);  this.ReplaceString(currentThread,stringValue);  }  }  returnthis;  }


了解了Fluent Interface,我們來(lái)看一下MVCContrib.FluentHTML的實(shí)現(xiàn),這里以TextBox為例進(jìn)行考察,首先看一下它的繼承關(guān)系:

public class TextBox : TextInput< TextBox>

public abstract class TextInput< T> : Input< T>, ISupportsMaxLength where T : TextInput< T>

public abstract class Input< T> : FormElement< T> where T : Input< T>, Ielement

泛型是一種高層次的算法抽象,我們就通過(guò)Input< T>一窺端倪:

  1. publicabstractclassInput<T>:FormElement<T>whereT:Input<T>,IElement  

  2. {  

  3. protectedobjectelementValue;  

  4.  

  5. protectedInput(stringtype,stringname):base(HtmlTag.Input,name)  

  6. {  

  7. builder.MergeAttribute(HtmlAttribute.Type,type,true);  

  8. }  

  9.  

  10. protectedInput(stringtype,stringname,MemberExpressionforMember,
    IEnumerable<IBehaviorMarker>behaviors)  

  11. :base(HtmlTag.Input,name,forMember,behaviors)  

  12. {  

  13. builder.MergeAttribute(HtmlAttribute.Type,type,true);  

  14. }  

  15.  

  16. ///<summary> 

  17. ///Setthe'value'attribute.  

  18. ///</summary> 

  19. ///<paramnameparamname="value">Thevaluefortheattribute.</param> 

  20. publicvirtualTValue(objectvalue)  

  21. {  

  22. elementValue=value;  

  23. return(T)this;  

  24. }  

  25.  

  26. ///<summary> 

  27. ///Setthe'size'attribute.  

  28. ///</summary> 

  29. ///<paramnameparamname="value">Thevaluefortheattribute.</param> 

  30. publicvirtualTSize(intvalue)  

  31. {  

  32. Attr(HtmlAttribute.Size,value);  

  33. return(T)this;  

  34. }  

  35.  

  36. protectedoverridevoidPreRender()  

  37. {  

  38. Attr(HtmlAttribute.Value,elementValue);  

  39. base.PreRender();  

  40. }  

關(guān)于ASP.NET MVC中MvcContrib.FluentHtml如何使用問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI