flask渲染模板时报错TypeError: 'UnboundField' object is not callable
Posted xiaxiaoxu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flask渲染模板时报错TypeError: 'UnboundField' object is not callable相关的知识,希望对你有一定的参考价值。
渲染模板时,访问页面提示TypeError: ‘UnboundField‘ object is not callable
检查代码,发现实例化表单类是,没有加括号:form = NewNoteForm,加了括号后就解决了form = NewNoteForm()
@app.route(‘/index‘)
def index():
form = NewNoteForm
notes = Note.query.all()
return render_template(‘index.html‘, notes=notes, form=form)
以上是关于flask渲染模板时报错TypeError: 'UnboundField' object is not callable的主要内容,如果未能解决你的问题,请参考以下文章