这篇文章主要介绍Flask中Flask-script如何添加命令,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
在执行脚本命令方面,我们已经初步对Flask-script模块有所了解。与脚本密切相关的,就是命令的编写。为了我们在使用时节约更多的时间,我们需要在Flask-script创建自定义命令的添加。
1、Command子类创建
需要自定义一个类继承Command类, 并且需要重写run方法, 不能为其他名字, 如果没有重写此方法会报NotImplementedError错误, 以下是manager.py文件
from flask import Flask
from flask_script import Manager
from flask_script import Command
app = Flask(__name__)
manager = Manager(app)
class Hello(Command):
"this is hello command desc"
def run(self):
print("hello world")
manager.add_command("hello", Hello()) # 参数一: 命令名, 参数二: 命令对象
if __name__ == "__main__":
manager.run()
2、使用@command装饰器
对于简单的命令,我们可以使用属于Manager实例的@command装饰器。
@manager.command
def hello():
"Just say hello"
print("hello")
以上是“Flask中Flask-script如何添加命令”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。
原文链接:https://www.py.cn/kuangjia/flask/23694.html