当前位置:   article > 正文

postman post请求 发送form表单数据/发送json数据_postman发送表单数据

postman发送表单数据

本文由 简悦 SimpRead 转码, 原文地址 blog.csdn.net

使用 postman 发送 post 请求   form 表单数据填写位置:

后端代码:

def post(self, request):
        jip_port = request.POST.get('ip_port')
        juname = request.POST.get('uname')
        jpswd = request.POST.get('pswd')
        result = {"status": 200, "msg": "登录成功"}
        return HttpResponse(json.dumps(result), content_type="application/json,charset=utf-8")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

使用 postman 发送 post 请求   json 数据填写位置:

后端代码:

def post(self, request):
        res = request.body.decode('utf-8')
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小惠珠哦/article/detail/1007023
推荐阅读
相关标签
  

闽ICP备14008679号