对 data-tippy-content 使用 Angular 的插值
Use Angular's interpolation for data-tippy-content
我正在做一个 Angular 项目并且 tippy.js 工作正常(https://atomiks.github.io).
问题是我需要用一些 JSON 信息填充工具提示,我可以用 Angular 的插值来放置这些信息,但出现以下错误:
"Can't bind to 'tippy-content' since it isn't a known property of 'div'."
<div data-tippy-content="{{top.description}}" data-tippy-placement="right" class="layout-tops-photos theme-tops-photos theme-hover js-tippy"></div>
有没有办法让它与插值一起工作?如果不行,还有别的办法吗?
使用属性绑定语法
<div attr.data-tippy-content="{{top.description}}" data-tippy-placement="right" class="layout-tops-photos theme-tops-photos theme-hover js-tippy"></div>
我正在做一个 Angular 项目并且 tippy.js 工作正常(https://atomiks.github.io).
问题是我需要用一些 JSON 信息填充工具提示,我可以用 Angular 的插值来放置这些信息,但出现以下错误: "Can't bind to 'tippy-content' since it isn't a known property of 'div'."
<div data-tippy-content="{{top.description}}" data-tippy-placement="right" class="layout-tops-photos theme-tops-photos theme-hover js-tippy"></div>
有没有办法让它与插值一起工作?如果不行,还有别的办法吗?
使用属性绑定语法
<div attr.data-tippy-content="{{top.description}}" data-tippy-placement="right" class="layout-tops-photos theme-tops-photos theme-hover js-tippy"></div>