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的主要内容,如果未能解决你的问题,请参考以下文章

Python2.7 在使用BSTestRunner.py时报错TypeError: unicode argument expected, got 'str'

python 链接数据时报错 TypeError: %d format: a number is required, not str 是因为端口号写成字符串格式的了

解决python mysql插入数据时报错:TypeError: %d format: a number is required, not str

VUE使用axios数据请求时报错 TypeError: Cannot set property 'xxxx' of undefined 的解决办法

VUE使用axios数据请求时报错 TypeError: Cannot set property 'xxxx' of undefined 的解决办法

Django :执行 python manage.py makemigrations 时报错 TypeError: __init__() missing 1 required positional a