摘要:
报错: Naticat11.1.13版本连接mysql8.0遇到报错: 1251-Client does not support authentication protocol requested by server 原因: 使用MySQL客户端Navicat连接数据库MySQL8.0,MySQL8 阅读全文
摘要:
输入命令 python manage.py db migrate 报错:TypeError: <flask_script.commands.Command object at 0x00000201F36629E8>: option values must be strings 是由于SQLALCHE 阅读全文
摘要:
启动flask时报错: ValueError: urls must start with a leading slash 错误代码: bp = Blueprint('cms',__name__,subdomain='cms',url_prefix='cms') 正确代码: bp = Blueprin 阅读全文
摘要:
错误代码: class RegistForm(Form): deposit = FloatField(validators=[InputRequired]) 解决方法: 将InputRequired改为InputRequired()即可 正确代码: class RegistForm(Form): d 阅读全文
摘要:
映射数据库时报错:sqlalchemy.exc.CompileError: (in table 'user', column 'username'): VARCHAR requires a length on dialect mysql 错误代码: username = db.Column(db.S 阅读全文
摘要:
安装库: 安装可能遇到的问题参考: Cannot uninstall 'wrapt'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which 阅读全文