@app.shell_context_processor 这个装饰器可以把函数里面的内容添加成 flask 的 shell 上下文,这样可以减少开启 shell 的时候重复导入模块的步骤,请问 django 有类似的用法吗?我只知道 django 有模板上下文管理器,那个我用过,但是没有找到 shell 的上下文管理器,我感觉这个挺有用的啊
1
susecjh 2018-05-02 18:01:06 +08:00 via Android
感觉没啥好的
|
2
ericls 2018-05-02 21:38:43 +08:00 via iPhone
shell_plus from django-extensions
Not a decorator but can achieve the the same thing. In fact, I don ’ t think it ’ s a good practice to intertwine your app code and dev tool. |