使用 Angular 删除引号 Json

Remove quotes Json with Angular

提问人:Akimetheus 提问时间:7/21/2021 更新时间:7/21/2021 访问量:876

问:

我通过管道 {{item.name | json}} 从 json 文件中调用“string”类型的 {{ | json}} 数据,如何使用 CSS 或 JS 删除引号?我看到“NameA”,但我想看到不带引号的 NameA。

json 示例:

人 = [{name: “NameA”, name: “NameB”}]

感谢那些能给我支持的人

CSS JSON Angular 字符串 引用

评论

0赞 Marcus Cantu 7/21/2021
你的html是什么样子的?

答:

1赞 burner-account 7/21/2021 #1

json 管道返回变量的 json 表示形式,其中包含引号。

如果您只想输出字符串,请去掉 json 管道并使用 .{{ item.name }}