HandlebarsJS:包含占位符的超链接?
HandlebarsJS: Hyperlink containing placeholder?
我有以下 table 超链接目前无法使用:
<div class="table">
<table id="personTable">
<tbody>
<tr>
<th>Id</th>
<th>Name</th>
</tr>
{{#each person}}
<tr>
<td><a href="https://www.mywebsite/person/{{id}}">{{id}}</a></td>
<td>{{name}}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
如何将占位符添加到超链接的末尾以便动态添加?
解决方案:
Try single quote '
<a href='https://www.mywebsite/person/{{id}}'>{{id}}</a>
我有以下 table 超链接目前无法使用:
<div class="table">
<table id="personTable">
<tbody>
<tr>
<th>Id</th>
<th>Name</th>
</tr>
{{#each person}}
<tr>
<td><a href="https://www.mywebsite/person/{{id}}">{{id}}</a></td>
<td>{{name}}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
如何将占位符添加到超链接的末尾以便动态添加?
解决方案:
Try single quote '
<a href='https://www.mywebsite/person/{{id}}'>{{id}}</a>