1

我正在尝试实现以下结果:我有一组来自数组的值,我对其进行迭代以填充 HTML 表。我还有一个图标,用户可以悬停在上面,可以看到来自数组的数据和来自翻译文件的翻译键。

我想将第二个参数绑定到 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>
4

1 回答 1

3

查看 t-params 属性,它允许您传入其他参数。更多关于官方指南http://aurelia.io/docs/plugins/i18n#using-the-plugin

于 2020-03-29T08:04:40.390 回答