我用node.js,express,angular.js和jade构建一个网站。我目前正在测试博客帖子上的html标签,但似乎并没有起作用。
我现在专注于标题。为什么浏览器不将其呈现为HTML?我已经用铬测试了这个,但我有相同的结果。这是玉代码:
div(ng-repeat='post in posts')
h3
|{{post.title}}
这是mongodb记录(相关内容):
"title": "<strong>This text is strong</strong>",
我该怎么做才能解决这个问题?
答案 0 :(得分:2)
尝试使用ngBindHtml指令:
div(ng-repeat='post in posts')
h3
span(ng-bind-html-unsafe='post.title')