我无法为 @Url.Content 方法准备字符串 url。
这是我来自下划线模板的代码块
<% var imgId = "~/Content/images/" +pocket.get('imageId'); %>
<div class="image1">
<% alert(imgId); %>
<img src= "@Url.Content("+<% imgId %>+")" alt="Assigned Details" />
我将通过口袋对象传递“imageId”。
我也尝试使用以下方法。获取 imgId 变量的编译错误
<img src= "<%= @Url.Content(string.Format("~/Content/Images/{0}", imgId)) %>" />