golang url_encode
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang url_encode相关的知识,希望对你有一定的参考价值。
ImportError:无法从“werkzeug”导入名称“url_encode”
【中文标题】ImportError:无法从“werkzeug”导入名称“url_encode”【英文标题】:ImportError: cannot import name 'url_encode' from 'werkzeug' 【发布时间】:2020-07-08 20:11:12 【问题描述】:我目前正在使用 flask-wtf version 0.14.2
和 wtforms version 2.21
运行 conda 环境,但我无法解决此问题 ImportError: cannot import name 'url_encode' from 'werkzeug'
以下代码是完整的回溯。
Traceback (most recent call last):
File "run.py", line 1, in <module>
from flaskblog import app
File "/Users/justinding/Desktop/test/test_wesite/flaskblog/__init__.py", line 10, in <module>
from flaskblog import routes
File "/Users/justinding/Desktop/test/test_wesite/flaskblog/routes.py", line 4, in <module>
from flaskblog.forms import RegistrationForm,LoginForm
File "/Users/justinding/Desktop/test/test_wesite/flaskblog/forms.py", line 1, in <module>
from flask_wtf import FlaskForm
File "/opt/anaconda3/envs/smartbox/lib/python3.7/site-packages/flask_wtf/__init__.py", line 17, in <module>
from .recaptcha import *
File "/opt/anaconda3/envs/smartbox/lib/python3.7/site-packages/flask_wtf/recaptcha/__init__.py", line 2, in <module>
from .fields import *
File "/opt/anaconda3/envs/smartbox/lib/python3.7/site-packages/flask_wtf/recaptcha/fields.py", line 3, in <module>
from . import widgets
File "/opt/anaconda3/envs/smartbox/lib/python3.7/site-packages/flask_wtf/recaptcha/widgets.py", line 5, in <module>
from werkzeug import url_encode
ImportError: cannot import name 'url_encode' from 'werkzeug' (/opt/anaconda3/envs/smartbox/lib/python3.7/site-packages/werkzeug/__init__.py)
【问题讨论】:
【参考方案1】:在您的需求文件中设置 werkzeug==0.16.1 可以修复它。问题在于 1.0.0 版本
【讨论】:
我们知道什么时候会在 1.x.x 版本中包含修复吗? 最好是set flask-wtf to be 0.14.3。【参考方案2】:猜测错误与新版本的 werkzeug 有关。 在新的 werkzeug 版本中没有“url_encode”。 所以尝试安装旧版本的werkzeug 像这样:“pip install werkzeug==0.16.0” 我用这个解决方案修复了
【讨论】:
【参考方案3】:尝试从 werkzeug.urls 导入它
【讨论】:
我按照@zo0m 的建议对导入进行了硬编码,它可以工作!以上是关于golang url_encode的主要内容,如果未能解决你的问题,请参考以下文章