- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试使用此 reqparse 将有意义的验证发送回 Flask 应用程序中的客户。这是代码:
class ParserTest(Resource):
def get(self):
parser = reqparse.RequestParser();
parser.add_argument('not_sent_from_client', type=str, required=True,
help='This field is required',
location='form')
args = parser.parse_args()
return "ok"
restfulApi.add_resource(ParserTest, '/p')
当我 curl -v http://localhost:5000/p
时,我得到了这个响应:
* About to connect() to localhost port 5000 (#0)
* Trying 127.0.0.1... connected
* Connected to localhost (127.0.0.1) port 5000 (#0) GET /api/v1/p HTTP/1.1 User-Agent: curl/7.21.4 (universal-apple-darwin11.0) libcurl/7.21.4 OpenSSL/0.9.8r zlib/1.2.5 Host: localhost:5000 Accept:
*/*
* HTTP 1.0, assume close after body < HTTP/1.0 400 BAD REQUEST < Content-Type: text/html < Content-Length: 192 < Server: Werkzeug/0.8.3 Python/2.7.1 < Date: Sat, 22 Dec 2012 22:21:33 GMT < <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <title>400 Bad Request</title> <h1>Bad Request</h1> <p>The browser (or proxy) sent a request that this server could not understand.</p>
* Closing connection #0
错误信息去哪儿了?
当我将代码更改为:
def get(self):
try:
parser = reqparse.RequestParser();
parser.add_argument('not_sent_from_client', type=str, required=True,
help='This field is required',
location='form')
args = parser.parse_args()
except Exception as e:
pprint.pprint(getmembers(e))
return 'ok'
当我发出 GET 请求时,它被转储到标准输出...
[('__call__', <bound method ClientDisconnected.__call__ of <ClientDisconnected '400: Bad Request'>>),
('__class__', <class 'werkzeug.exceptions.ClientDisconnected'>),
('__delattr__', <method-wrapper '__delattr__' of ClientDisconnected object at 0x1065ca230>), ('__dict__', {'data': {'message': 'This field is required'}}),
('__doc__', 'Internal exception that is raised if Werkzeug detects a disconnected\n client. Since the client is already gone at that point attempting to\n send the error message to the client might not work and might ultimately\n result in another exception in the server. Mainly this is here so that\n it is silenced by default as far as Werkzeug is concerned.\n\n Since disconnections cannot be reliably detected and are unspecified\n by WSGI to a large extend this might or might not be raised if a client\n is gone.\n\n .. versionadded:: 0.8\n '), ('__format__', <built-in method __format__ of ClientDisconnected object at 0x1065ca230>), ('__getattribute__', <method-wrapper '__getattribute__' of ClientDisconnected object at 0x1065ca230>), ('__getitem__', <method-wrapper '__getitem__' of ClientDisconnected object at 0x1065ca230>), ('__getslice__', <method-wrapper '__getslice__' of ClientDisconnected object at 0x1065ca230>), ('__hash__', <method-wrapper '__hash__' of ClientDisconnected object at 0x1065ca230>), ('__init__', <bound method ClientDisconnected.__init__ of <ClientDisconnected '400: Bad Request'>>), ('__module__', 'werkzeug.exceptions'), ('__new__', <built-in method __new__ of type object at 0x105bd4570>), ('__reduce__', <built-in method __reduce__ of ClientDisconnected object at 0x1065ca230>), ('__reduce_ex__', <built-in method
__reduce_ex__ of ClientDisconnected object at 0x1065ca230>), ('__repr__', <bound method ClientDisconnected.__repr__ of <ClientDisconnected '400: Bad Request'>>), ('__setattr__', <method-wrapper '__setattr__' of ClientDisconnected object at 0x1065ca230>), ('__setstate__', <built-in method __setstate__ of ClientDisconnected object at 0x1065ca230>), ('__sizeof__', <built-in method __sizeof__ of ClientDisconnected object at 0x1065ca230>), ('__str__', <bound method ClientDisconnected.__str__ of <ClientDisconnected '400: Bad Request'>>), ('__subclasshook__', <built-in method __subclasshook__ of type object at 0x105da42c0>), ('__unicode__', <bound method ClientDisconnected.__unicode__ of <ClientDisconnected '400: Bad Request'>>), ('__weakref__', None), ('args', ('400 Bad Request',)), ('code', 400), ('data', {'message': 'This field is required'}), ('description', '<p>The browser (or proxy) sent a request that this server could not understand.</p>'), ('get_body', <bound method ClientDisconnected.get_body of <ClientDisconnected '400: Bad Request'>>), ('get_description', <bound method ClientDisconnected.get_description of <ClientDisconnected '400: Bad Request'>>), ('get_headers', <bound method ClientDisconnected.get_headers of <ClientDisconnected '400: Bad Request'>>), ('get_response', <bound method ClientDisconnected.get_response of <ClientDisconnected '400: Bad Request'>>), ('message', '400 Bad Request'), ('name', 'Bad Request'), ('wrap', <bound method type.wrap of <class 'werkzeug.exceptions.ClientDisconnected'>>)]
但是“ok”被发送到客户端。所以客户端正在断开连接。
我想使用它向我的 api 客户端发回有意义的错误消息,但调用堆栈中似乎发生了另一个错误。有什么想法吗?
最佳答案
似乎 Werkzeug 几个月前用 https://github.com/mitsuhiko/werkzeug/commit/2723a117e34207f33ff075a9ea6d1f28a33131d3 改变了他们的异常逻辑.
因此 flask-restful 有点过时了。我遇到了同样的问题,为了适应新代码我做了一个快速破解,看看 https://github.com/vojnovski/flask-restful/commit/8bfd1a8427b15df95a6549afdf4ddb4a49d8f29b 中的变化。 .
请记住,他也打破了 flask-restful 的测试,如果你不想测试失败,你也需要修补它们。
关于python - flask.ext.restful -> reqparse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14007228/
我正在遵循Flask-potion教程并尝试保护我的api。我一直试图找出如何在User端点上设置权限,以使一个User无法查看另一个User的记录。这是我的代码: class UserResourc
项目设置 Python 3.5.3 flask 0.12.2 目录 . ├── Core │ ├── BackgroundProcessManager.py │ ├── FirebaseDat
我正在构建 flask 应用程序并决定这次尝试应用程序工厂方法,但是遇到了 flask 迁移的麻烦并且无法找出简单的解决方案。 请注意,我想将配置位置作为选项传递给脚本 管理.py: manager
我尝试通过以下示例代码来熟悉Flask-APScheduler插件:https://github.com/viniciuschiele/flask-apscheduler/blob/master/ex
我一周前刚刚了解了 Flask 和 JWT,所以我真的需要一些帮助。有人可以解释一下flask-jwt和flask-jwt-extended之间的区别吗? 最佳答案 Flask-JWT 没有那么多功能
我是 Flask 的新手,我只是想用它创建一个简单的市场。我的网站上有三种类型的用户 [卖家、买家、管理员]。我认为每种类型的用户都应该有自己的注册和登录,因为他们的角色应该提供不同类型的信息。另一方
基本上,我想做一些非常简单的事情:我想创建一个用于删除数据库中条目的表单。 模板正在创建一个包含所有条目的html表,没有任何麻烦。我现在的问题是:如何将其转换为每行都有链接的表单。 当然,我可以通过
我对Flask来说非常陌生,其中一个基本要求是我需要SEO友好的URL。 我说一条路线 @app.route('/sales/') @app.route(/sales/) def get_sales(
一直在为用户管理系统开发Flask-user,但是我看不到自定义登录页面和注册页面的方法。我使用pip安装了flask-user pip install flask-user 任何帮助,将不胜感激 最
我有一个奇怪的情况,不知道如何找到问题。 我已经创建了一个这样的蓝图 reportjobsmod = Blueprint('jobreports', __name__, url_prefix='/jo
我认为在 Flask 中拥有实例变量的正确方法是添加用户和 session ,但我正在尝试测试一个概念,我还不想经历所有这些。我试图让一个网络应用程序将图像加载到一个变量中,然后可以对其执行不同的图像
select = SelectField("City") form.select.choices = [(places['name'], places['name']) for places in p
这个问题在这里已经有了答案: Provide extra information to Flask's app.logger (2 个回答) 3年前关闭。 我正在运行一个 flask 应用程序。我想写
我当时正在编程一个非常不错的api,使用json从游戏服务器到我的网站空间获取一些json数据, 但是每次我使用angular发送请求时,我都会得到以下信息:127.0.0.1--[20 / Mar
我已经开发了一个上传表单,以将特定的.xlsx文件作为上传。要求是要处理非xlsx上载的任何异常(例如zip,exe文件)。我正在使用pyexcel库读取上传内容。我尝试创建以下代码来处理此异常: e
我使用此功能在网站上捕获404错误: @app.errorhandler(404) def page_not_found(e): logger.warning('User raised an
我正在尝试同时使用 Flask Restful 和 Flask SocketIO。我已经制作了一个 Flask Restful 应用程序,但现在我想使用 Flask SocketIO 在客户端和我的服
我有一些 Flask 应用程序,我通过设置 FLASK_APP 来运行它们。环境变量和调用 flask run .自 FLASK_DEBUG也设置了,每当我更改一些代码时,应用程序都可以方便地重新加载
我目前正在使用 Flask 构建一个应用程序。我正在努力访问 Flask 实例“app”以及 Flask-mail 实例“mail”。 下面是我的项目的样子: └── my-project ├
Remember-me是 parameter flask_login.login_user(user, remember=False, duration=None, force=False, fres
我是一名优秀的程序员,十分优秀!