标签:python
index.html
<form method="post" >
请输入数字<input type="text" name="mustnumber" />
<br/>
<input type=‘submit‘ value="提交" />
</form>
{{result}}
在表单中输入数字在控制台打印
hello.py
def hi(request):
dataset={‘result‘:‘必须输入数字‘}
print request.POST.get(‘mustnumber‘)
return render_to_response("index.html",dataset)
本文出自 “dba天空” 博客,请务必保留此出处http://9425473.blog.51cto.com/9415473/1702061
标签:python
原文地址:http://9425473.blog.51cto.com/9415473/1702061