您好我在WordPress网站上使用AngularJS,并且在我的部分HTML文件(例如{{post.manualest}}
)中使用Angular代码显示自定义字段值时,它显示为["1,500,000"]
如何删除[" "]
,使其仅显示1,500,000
?
答案 0 :(得分:3)
由于{{post.manualest}}
包含数组,您需要ng-repeat
<p ng-repeat="tag in post.manualest">{{tag}}</p>
ngRepeat 指令每个项目实例化一次模板 一个集合。每个模板实例都有自己的范围,其中 给定循环变量设置为当前集合项,
$index
设置为项目索引或键。
答案 1 :(得分:1)
您收到的数据(在manualest
密钥中)是一个数组。因此,您可以使用ng-repeat
作为@Vicky建议,也可以只使用HTML编写:
{{post.manualest[0]}}
编辑:与评论中已提及的@FuzzyTree一样。