如何将值绑定到 Aurelia 中的 TCustomAttribute?
How do I bind a value to a TCustomAttribute in Aurelia?
我正在尝试实现以下结果:我有一组值来自一个数组,我对其进行迭代以填充 HTML table。我还有一个图标,用户可以将鼠标悬停在上面,并可以看到其中来自数组的数据和来自翻译文件的翻译密钥。
我想将第二个参数绑定到 TCustomAttribute,以便向用户显示他们编辑的另一个数据。
我如何在 Aurelia 中实现这一点?
<template>
<table>
<thead>
<th><span>Id</span></th>
<th><span>Name</span></th>
<th><span>Description</span></th>
<th><span>Date</span></th>
</thead>
<tbody>
<tr repeat.for="item of data">
<td><span>${item.Id}</span></td>
<td><span>${item.Name}
<a data-toggle="popover" t="[data-content]pending_name ${data.Name}" data-trigger="hover">
<i class="fa fa-info-circle"></i>
</a>
</span></td>
<td><span>${item.Description}</span></td>
<td><span>${item.Date}</span></td>
</tr>
</tbody>
</table>
</template>
查看允许您传入附加参数的 t-params 属性。官方指南中有更多相关信息 http://aurelia.io/docs/plugins/i18n#using-the-plugin
我正在尝试实现以下结果:我有一组值来自一个数组,我对其进行迭代以填充 HTML table。我还有一个图标,用户可以将鼠标悬停在上面,并可以看到其中来自数组的数据和来自翻译文件的翻译密钥。
我想将第二个参数绑定到 TCustomAttribute,以便向用户显示他们编辑的另一个数据。
我如何在 Aurelia 中实现这一点?
<template>
<table>
<thead>
<th><span>Id</span></th>
<th><span>Name</span></th>
<th><span>Description</span></th>
<th><span>Date</span></th>
</thead>
<tbody>
<tr repeat.for="item of data">
<td><span>${item.Id}</span></td>
<td><span>${item.Name}
<a data-toggle="popover" t="[data-content]pending_name ${data.Name}" data-trigger="hover">
<i class="fa fa-info-circle"></i>
</a>
</span></td>
<td><span>${item.Description}</span></td>
<td><span>${item.Date}</span></td>
</tr>
</tbody>
</table>
</template>
查看允许您传入附加参数的 t-params 属性。官方指南中有更多相关信息 http://aurelia.io/docs/plugins/i18n#using-the-plugin