我正在开发的应用程序的简单想法是用户给出 Linux 命令,Linux 命令的结果将显示在网络浏览器中。这是我的views.py:
from django.shortcuts import render_to_response
from django.http import HttpResponseRedirect
from django.template import RequestContext
import subprocess
globalcmd = 0
globalresult = 0
def ls(request):
if request.method == 'POST':
globalcmd = request.POST.get('command', False)
globalresult = subprocess.call(['globalcmd'], shell=True)
return HttpResponseRedirect('/thanks/')
else:
pass
return render_to_response('form.html', {'cmd':'cmd'}, context_instance=RequestContext(request))
def show_template(request):
return render_to_response('thanks.html', {'globalok':globalresult}, context_instance=RequestContext(request))
我从由视图“ls”处理的 form.html 获得输入。作为用户,我只是在使用 ls 命令进行测试。每当我按下 ls 命令时,它都会由 suprocess.call 处理并存储在 globalresult 中,稍后在thanks.html 中调用它。我的输出是 0。我做错了什么?这是Thanks.html:
<h1>
{{ globalresult }}
</h1>