首页 > 其他 > 详细

django post 与get请求理解

时间:2021-08-24 20:57:48      阅读:31      评论:0      收藏:0      [点我收藏+]

同页面form表单中get请求与post请求的理解

views.py

def game_update(request):
    try:
        gameid=request.GET.get(‘id‘,‘‘)
        game=Game.objects.get(id=gameid)
    except Exception as e:
        return ‘不存在id‘
        print(‘异常……%e‘%(e))
    if request.method==‘GET‘:
        
        return  render(request,‘games/update.html‘,locals())


    elif request.method==‘POST‘:
        
       #注意gname获取不到,否则会报错 str没有get属性
        config_type=request.POST[‘config_type‘]
        game.config_type=config_type
        game.save()
        return  redirect(‘/game/index‘)  

update.html

body>
    <h3>更新游戏</h3>
    <div>
        <form action="/game/update/?id={{game.id}}" method="POST">
        {% csrf_token %}
        游戏名:<input type="text" name="gname" value={{game.gname}} disabled>
        游戏配置类型:<input type="text" name="config_type" value="{{game.config_type}}">
        <input type="submit" value=‘更新‘>
        
        </form>
    </div>
</body>
  

技术分享图片

django post 与get请求理解

原文:https://www.cnblogs.com/yescarf/p/15181558.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!