小程序误区之请求(小程序POST请求服务器,服务器接受到的数据为null)
当前台请求为post时,在request请求中要加上
header:{
'content-type':'application/x-www-form-urlencoded'
}
当前台请求为get时,在request请求中要加上
header:{
'content-type':'application/json'
}
这样后台就可以接受到值啦(php的后台)
只是一个小菜鸟,在不断完善自己的知识,如有不对,请指出问题