在已經添加到setting
的app
中添加模塊management
,在management
下添加模塊commands
就可以在commands
下添加我們想添加的命令了(*.py
)
舉個栗子
#management.commands.hello.py 這是文件路徑以及文件名
from django.core.management.base import BaseCommand
class Command(BaseCommand):
def handle(self, *args, **options):
print('hello, world!')
在terminal
中運行python3 manage.py hello
即可看到hello, world!