1

我正在开发一个Angular项目并且让tippy.js工作正常(https://atomiks.github.io)。

问题是我需要用一些 JSON 信息填充工具提示,我可以使用 Angular 的插值放置这些信息,但出现以下错误:“无法绑定到 'tippy-content',因为它不是 ' 的已知属性div'。

<div data-tippy-content="{{top.description}}" data-tippy-placement="right" class="layout-tops-photos theme-tops-photos theme-hover js-tippy"></div>

有没有办法让它与插值一起工作?如果没有,还有其他方法吗?

4

1 回答 1

2

使用属性绑定语法

<div attr.data-tippy-content="{{top.description}}" data-tippy-placement="right" class="layout-tops-photos theme-tops-photos theme-hover js-tippy"></div>
于 2019-05-20T20:41:56.190 回答