在Underscore.js模板中创建锚标记

时间:2016-11-21 17:30:29

标签: asp.net-core underscore.js

我正在尝试在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/>
%>}

1 个答案:

答案 0 :(得分:2)

只需使用相同的输出标记,但在锚asp-route-id属性中。

<a asp-route-id="<%= item.id %>"> 
     <%= item.Name %>
<a/>