您好,登錄后才能下訂單哦!
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>一窺端倪:
publicabstractclassInput<T>:FormElement<T>whereT:Input<T>,IElement
{
protectedobjectelementValue;
protectedInput(stringtype,stringname):base(HtmlTag.Input,name)
{
builder.MergeAttribute(HtmlAttribute.Type,type,true);
}
protectedInput(stringtype,stringname,MemberExpressionforMember,
IEnumerable<IBehaviorMarker>behaviors):base(HtmlTag.Input,name,forMember,behaviors)
{
builder.MergeAttribute(HtmlAttribute.Type,type,true);
}
///<summary>
///Setthe'value'attribute.
///</summary>
///<paramnameparamname="value">Thevaluefortheattribute.</param>
publicvirtualTValue(objectvalue)
{
elementValue=value;
return(T)this;
}
///<summary>
///Setthe'size'attribute.
///</summary>
///<paramnameparamname="value">Thevaluefortheattribute.</param>
publicvirtualTSize(intvalue)
{
Attr(HtmlAttribute.Size,value);
return(T)this;
}
protectedoverridevoidPreRender()
{
Attr(HtmlAttribute.Value,elementValue);
base.PreRender();
}
}
關(guān)于ASP.NET MVC中MvcContrib.FluentHtml如何使用問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
免責(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)容。