私のアプリには、リソースのフィールドを更新するフックがあります。別の投稿では、誰かが patch_internal メソッドを使用しましたが、その方法がわかりませんでした。
from my_application import app
from eve.methods.patch import patch_internal
def my_hook(...):
with app.test_request_context():
patch_internal("my_resource", payload={"bar": "bar_value"}, lookup={"foo": "foo_value"})
で使ってみPRESERVE_CONTEXT_ON_EXCEPTION = False
ましたsettings.py
。
私がそれを試す方法に応じて、私はどちらかを取得します
最初にフックをトリガーした元のリクエストの 404、
または AssertionError:
.
Debugging middleware caught exception in streamed response at a point where response headers were already sent.
Traceback (most recent call last):
File ".../lib/python2.7/site-packages/flask/app.py", line 1836, in __call__
return self.wsgi_app(environ, start_response)
File ".../lib/python2.7/site-packages/flask/app.py", line 1825, in wsgi_app
ctx.auto_pop(error)
File ".../lib/python2.7/site-packages/flask/ctx.py", line 374, in auto_pop
self.pop(exc)
File ".../lib/python2.7/site-packages/flask/ctx.py", line 357, in pop
% (rv, self)
AssertionError: Popped wrong request context.
(<RequestContext 'http://127.0.0.1:5001/' [GET] of eve> instead of <RequestContext 'http://127.0.0.1:5001/my_endpoint' [GET] of eve>)
私の質問は:
patch_internal の適切なパラメーターは何ですか? どの項目を変更したいのかを Eve に伝えるにはどうすればよいですか?