码迷,mamicode.com
首页 > 其他好文 > 详细

django打印表单post的值

时间:2015-10-12 14:38:43      阅读:148      评论:0      收藏:0      [点我收藏+]

标签: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

django打印表单post的值

标签:python

原文地址:http://9425473.blog.51cto.com/9415473/1702061

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!