我在Razor(.cshtml文件)中有这段代码:
<div class="category">
@Html.Raw(Model.CategoryLinks(" | ").Replace("Fotogallery", ""))
</div>
我不仅要将“Fotogallery”替换为NULL,还要替换其他3个值:
我该怎么办?你能帮帮我吗?
答案 0 :(得分:0)
string.Replace()
返回带替换的字符串,因此您可以链接调用,例如:
@Html.Raw(Model.CategoryLinks(" | ").Replace("Fotogallery", "").Replace("videogallery", "").Replace("musicgallery", ""))