我想监控网页上不断变化的实时值。因此,我在脚本中将真实值模拟为随机值,并尝试在 Bottle-created 网页上对其进行监控。但为了看到新值,我只需要重新加载整个页面。我想要的是用指定的时间间隔更新值。难道只有Ajax才有可能?我怎么能以另一种方式做到这一点?这是我的代码:
from bottle import route, run
from random import randint
@route('/monitor')
def index():
name=randint(0,999)
return '<b>Value is %d!</b>' % name
if __name__ == '__main__':
run(host='localhost', port=8080)
提前致谢。