0

我有一个像这样的 sanic 应用程序:



from functools import wraps
import os

from sanic import Sanic
from sanic.response import json

from es_api.client import ElasticEngine
from utils import cleanup

app = Sanic(__name__)

async def setup_es_client(app, loop):
    app.es_client = ElasticEngine.from_bonsai("xkcd_production", test_instance=False)



@app.route("/", methods=["GET"])
async def home(request):
    return json({"hello": "worldddd"})




@app.route("/all", methods=["GET"])
async def display_all_docs(request):
    results = app.es_client.search_all().results()
    return json(
        {"results": results}
    )



if __name__ == "__main__":
    app.register_listener(setup_es_client,
                          'before_server_start')
    app.run(host="0.0.0.0", port=8000, debug=True, workers=20)

当我运行 uvicorn myapp 时,它可以很好地服务于主页:我看到了预期的 json。

但是当我打的时候/all,它说

“应用程序没有属性 es_client”

,这可能表明该before_server_start函数尚未运行。

我该如何解决?我已经查看了 sanic doc,但我找不到任何关于这个问题的参考资料

(当我按原样运行应用程序时它工作正常 - 即,python3 myapp.py

4

1 回答 1

0

固定的。

app.register_listener(setup_es_client, 'before_server_start')上移if __name__=="__main__"

更好的是,只需使用 sanic 的内置装饰器以获得更好的人体工程学:https ://sanic.readthedocs.io/en/latest/sanic/middleware.html

于 2019-09-02T19:34:06.267 回答