这是人为的,但基本上是我在做什么。我有一个@helper像这样:
@helper MyImage(int i) {
String s = "<img src='{0}' />";
String theImage = "";
switch(i) {
case 0: theImage = "test1.png"; break;
case 1: theImage = "test2.png"; break;
default: theImage = "error.png"; break;
}
String r = String.Format(s, theImage);
@(r)
}
我在网页上得到的输出当然是实际的字符串:
<img src='test1.png' />
而不是图像。有没有办法禁止它以这种方式编码?
最佳答案
您可以使用@Html.Raw(r)
而不是@(r)
。