标签:ret func style success post 返回 cti des for
首先,要知道请求的类型(method):POST/GET
然后用get方法获取需要的内容:
request.GET.get()
request.POST.get()
返回字典类型的数据
dic = {
‘name‘: user.name,
‘email‘: user.email,
‘num‘: user.number
}
return JsonResponse(dic)
客户端向后端发送请求,get请求相对而言不是太安全(所有的数据都在请求连接里面)
post请求与get请求,除了要修改method,还要修改header中的‘content-type‘
wx.request({
url: ‘http://127.0.0.1:8000/user_designer/‘,
data: {
name: this.data.name,
},
header: {
‘content-type‘: ‘application/json‘
},
method: "GET",
success(res) {
console.log("发送成功"),
}
})
wx.request({
url: ‘http://127.0.0.1:8000/designer/‘,
header: { "content-type": "application/x-www-form-urlencoded" },
method: "POST",
data: { diqu:this.data.diqu_txt},
success: function (res) {
console.log("发送成功")
}
})
标签:ret func style success post 返回 cti des for
原文地址:https://www.cnblogs.com/Clay-i/p/10360663.html