我知道你可以在asp.net MVC Razor Engine中做到这一点:
@{
string myValue = "foo"
}
<h1 hello='@myValue'></h1>
&#13;
但我宁愿这样做,但这会导致错误:
@{
string myAttribute = "hello='foo'";
}
<h1 @myAttribute></h1>
&#13;
是否有可能实现?
答案 0 :(得分:0)
答案是
@{
string myAttribute = "hello=foo";
}
<h1 @myAttribute></h1>
&#13;
没有引号。 谢谢Stephen Muecke