2
我想根據我傳遞一個特定的屬性與他的價值產生。這是我要如何使用助手:可以將HTMLHelper不僅用於屬性值,而是用於屬性的名稱?
<sometag @PossibleHelper(parameter)/>
PossibleHelper後做他的事,這可能是結果:
<sometag attributeName="attributeValue"/>
我怎樣才能表達,在助手?
@helper PossibleHelper(someType){
if(condition){
attributeName="attributeValue" //this is wrong
}
}
謝謝Tyriar。我會補充(在閱讀和測試一些後)@函數也可以做我想問的東西。 – mjsr 2013-03-21 21:10:26