我使用go-Pylons.py脚本安装了Pylons 0.9.7。
我有一行蟒蛇:

from webhelpers.html.secure_form import secure_form

当我试图为我的申请服务时,我得到了一个错误:没有模块安全表单。
我试过从webhelpers和那些工作中编写import webhelpers.html.tags和其他模块。我想知道为什么我没有安全表单,以及如何手动获取此模块?我试过重新运行go-pylons.py,但没用。
有什么想法吗?

最佳答案

如果您的webhelpers版本为1.0b4或更高版本,则secure_form位于webhelpers.pylonslib,ie下。

from webhelpers.pylonslib import secure_form

关于python - Pylons :Webhelpers:缺少secure_form模块,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2219316/

10-10 23:39