如何在HTML中显示Json数据?

时间:2017-08-17 15:28:15

标签: html angularjs json

HTML code:

#! /usr/bin/python
file = open('/home/results/err.txt')
for line in file.readline():
    print line

JSON数据:

<button type="button" (click)="callJoke()">Get joke</button>
<h1>{{msg[1].joke.value}}</h1>

msg是一个来自API响应的对象

1 个答案:

答案 0 :(得分:1)

尝试使用角度json管道:

<h1>{{msg.joke.value | json}} </h1>