AngularJs:如何插入内插字符串?
我正在尝试插入来自数据库的字符串,如下所示 "Users({{users_count || 0}})"
,当我使用 {{}} 插入它时
或 ng-bind
它不会被插值,因为在 HTML 中我编写 {{data.usersCount}}
并且页面将数据插值为文本不像js, (我希望页面呈现的是 Users(8)
,而呈现的是 Users({{users_count || 0}})
)。 所以我的问题是如何插入从 usersCount
变量插入的字符串?
I'm trying to Interpolate a string coming from a database which looks like this "Users({{users_count || 0}})"
, and when I interpolate it using {{}}
or ng-bind
it doesn't get interpolated, because in the HTML I write {{data.usersCount}}
and the page interpolates the data as text not as js, (what I intended the page to render is Users(8)
, and what gets rendered is Users({{users_count || 0}})
).
So my question is how to interpolate the string that was interpolated from the usersCount
variable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是使用 $interpolate,如
One way is to use $interpolate, as in