gpt4 book ai didi

angularjs - 如何在Angular JS中解析字符串内的HTML标签

转载 作者:行者123 更新时间:2023-12-03 08:10:13 24 4
gpt4 key购买 nike

在 Controller 中,我有一个变量,说$ scope.question。

$scope.question = "Hi this is <br/> book";

在html页面中访问此变量,例如{{question}}。
<div class="question">
1. {{question}}
</div>

我想要带有换行符的输出...但是相反,它显示为字符串...如何解析html标签。

最佳答案

您应该使用ng-bind-html指令。要利用该资源,您需要:

//1. given
.controller('AppController', [
function() {
$scope.SomeHtml = '<b>some html</b>';


//2. use ng-bind
<div ng-bind-html="SomeHtml"></div>

检查演示 from official AngularJS documentation on plnkr.co

关于angularjs - 如何在Angular JS中解析字符串内的HTML标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31316699/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com