AJAX提交数据到后台,PHP无法获取POST数据的解决办法
1.
$.ajax({ type: "POST", url: "api/GameAjax/getLuckyGift", data: {openid: $("#openid").val(), rid: $("#rid").val()}, success: function (data) {
}
});
无法获取$_POST
2. $.ajax({ type: "POST", url: "api/GameAjax/getLuckyGift/index.php", data: {openid: $("#openid").val(), rid: $("#rid").val()}, success: function (data) {
}
});
url加上具体index.php路径后,能获取$_POST
相关推荐
wcqwcq 2020-07-04
84423067 2020-06-12
Guanjs0 2020-11-09
wmsjlihuan 2020-09-15
shishengsoft 2020-09-15
poplpsure 2020-08-17
CyborgLin 2020-08-15
Richardxx 2020-07-26
sunnyhappy0 2020-07-26
knightwatch 2020-07-19
chichichi0 2020-06-16
YAruli 2020-06-13
JF0 2020-06-13
心丨悦 2020-06-11
zkwgpp 2020-06-04
stoneechogx 2020-06-04
litterfrog 2020-05-30
today0 2020-05-26