Django运行Windows命令提示符

时间:2018-04-20 07:07:41

标签: python django django-views subprocess command-prompt

如何使用django显示/运行Windows命令提示符?

在我看来。

def run(request):

    cmd = '__batch.cmd Server.Tester.exe Config.xml'
    exitcode = str(subprocess.call(cmd, shell=False))

    return render(request, "testy/lista.html", {"exitcode": exitcode})

我使用 subprocess.call ,但输出请参见 pycharm终端,而不是 Windows命令提示符。有人能帮助我吗?

enter image description here

0 个答案:

没有答案