模板

时间:2017-11-15 12:07:08

标签: angular interpolation angular-template

拥有一个迭代的集合,有没有办法使用它的属性 来自集合的元素并将其用作从另一个流中获取其他内容的关键(如双插值)?仅从模板开始。

类似的东西:

    <tr *ngFor="let book of (books$ | async)">
     <td> {{ (text$ | async)[{{ book.title }}] }}</td>
    </tr>

我可以使用book.title从文本中获取内容。

1 个答案:

答案 0 :(得分:0)

我制作了一个以book.title为参数的管道,并在应用商店中搜索文字。