Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有一个 Razor 方法可以将“对象到字符串”放入 html 中,例如:
<a href="http://@Model.x.y">Anchor</a>
还是我必须使用类似的东西并改变我的模型?
c#对象到字符串以文本格式显示
谢谢
如果您从模型传递的链接是字符串,则正确的语法是
<a href="@Html.Raw(@Model.x.y))">Anchor</a>
或者
<a href=@Html.Raw("http://www." + @Model.x.y))>Anchor</a>
这样您就可以正确解析链接中可能出现的任何特殊字符,例如&或=
&
=