如何在不刷新网页和添加评论的情况下自动更新数据,例如说数据是否持续增长-ON
,否则OFF
?
我从这样的URL获取json数据:
@app.route('/data', methods=['GET'])
def data():
params = {
'api_key': '{API_KEY}',
}
url='https://xxx.xxx.xxx.xxx:xxxx/yy/yy/'
r= requests.get(url, params=params, verify=False).content
return render_template('data.html', time=json.loads(r)['time'])
html:
{% block body %}
<h1>data</h1>
{% for ON in time %}
<div>{{ON["time"]}}</div>
{% endfor %}