gpt4 book ai didi

javascript - 在 AngularJS 中将 json & 转换为 &

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:45:01 24 4
gpt4 key购买 nike

我有一个具有 value 属性的 HTML 元素。该值应该是 Comfort & Protection 但来自 JSON 获取结果的名称是 Comfort & Protection 并且 AngularJS 在我的 View 中像这样打印它。

我尝试将此名称放入 html 元素值属性中。

<div ng-app="app">
<div ng-controller="ExampleCtrl">
<input type="text" ng-repeat="type in types" value="{{type.name}}" />
</div>
</div>
var app = angular.module("app", []);

app.controller('ExampleCtrl', function($scope){
$scope.types = [
{
id: 1,
name: 'Comfort &amp; Protection'
},
{
id: 2,
name: 'Other Name'
}
]
})

http://codepen.io/Fclaussen/pen/vOXNbg

最佳答案

一种选择是用 & 替换 & 字符串,如下所示:

var text = name.replace(/&amp;/g, '&')

关于javascript - 在 AngularJS 中将 json & 转换为 &,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30355025/

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