大家好,关于flask_wtf,官网上的实例
from flask_wtf import FlaskForm
from wtforms import StringField
from wtforms.validators import DataRequired
class MyForm(FlaskForm):
name = StringField('name', validators=[DataRequired()])
第一行这样的引入方式,我怎么尝试不成功?在pytone IDE中提示:
ImportError: cannot import name FlaskForm
如果按常规的引入方式:
from flask_wtf import Form
pythone IDE是没问题,但在pycharm中,会有异常提示:
This inspection detects names that should resolve but don't. Due to dynamic dispatch and duck typing, this is possible in a limited but useful number of cases. Top-level and class-level items are supported better than instance items
以上,求解?
官网的例子是错的吗?
pycharm中为什么公有波浪提示?
官網的例子沒有錯,只不過那是0.13版本,你查看的是
latest
的文檔,而0.12版本的地址是https://flask-wtf.readthedocs...,但是問題是pypi上最高只有0.12 ,也就是說雖然現在有0.13版本,但是作者沒有發不出來,只是文檔更新了,如果要安裝最新的就得使用源碼安裝了PyCharm的波浪線表示該模組在目前檔案並沒有被使用