我試圖發送一個帖子到php函數,php文件可以通過paremeter管理髮帖請求,名爲「action」,如何在帖子中插入名爲action的字段,這是我的帖子:設置在post請求javascript和jquery,數據和額外參數
$.ajax({
dataType: "json",
type: 'POST',
url: "php/pointsAddOrModify.php",
data:{
client: cliente,
dateInit: dataInit,
dateEnd: dataEnd,
factor: factorPoints,
idComb: idComb
},
success: function(data){
if (data.structure != undefined)
{
if(data.status == "OK") {
alert("Registro Exitoso");
}
else {
alert("Error intentar de nuevo");//data.message);
}
}
}
});
如何添加一個名爲命令paremeter和自己的價值,這個參數是出的數據,通過實例。
$.ajax({
dataType: "json",
type: 'POST',
url: "php/pointsAddOrModify.php",
command: 'happyHour'
data:{
client: cliente,
dateInit: dataInit,
dateEnd: dataEnd,
factor: factorPoints,
idComb: idComb
},
success: function(data){
if (data.structure != undefined)
{
if(data.status == "OK") {
alert("Registro Exitoso");
}
else {
alert("Error intentar de nuevo");//data.message);
}
}
}
});
只是一個例子,但對我來說很簡單,也可以用一個簡單的jquery。
你在問什麼?你不明白這段代碼在做什麼?要在POST中發送一個值,只需將其添加到'data'對象。 –
你可以重組你的問題嗎? –