我正在尝试在Underscore.js模板中创建一个锚标签,我需要将属性的值设置为Underscore变量:
_.each(items, function(item){%>
<a asp-route-id= "here i want to pass item.id but i can't">
<%= itme.Name %>
<a/>
%>}
答案 0 :(得分:2)
只需使用相同的输出标记,但在锚asp-route-id
属性中。
<a asp-route-id="<%= item.id %>">
<%= item.Name %>
<a/>