如果我添加自定义模板过滤器,即使不将其注入html。模板中的任何更改都不会在页面重新加载后导致任何影响。就像它们永远被缓存一样。
import re
@app.template_filter('test')
def format_number(value):
return re.sub(r'\B(?=(\d{3})+(?!\d))', ' ', value)
答案 0 :(得分:0)
好像烧瓶虫。
app.config['TEMPLATES_AUTO_RELOAD'] = True
解决了这个问题