如何使用经典 asp 通过 ajax.api 发送和接收数组值
How to send and receive array value by ajax.api using classic asp
我想通过 ajax 发送数组值并接收但是在 ajax URL 页面中它得到 none 值我想知道如何发送和接收,请
在ajax发送页面的
$('#Available').click(function(){
$.ajax({
url:"../clientlist/commisstion_api.asp",
data:{id_tb:id_tb},
global:false,
success:function(data){
var obj = JSON.parse(data);
},
error:function(xhr, ajaxOptions, thrownError){
console.log(xhr.status);
console.log(thrownError);
}
});
});
在接收页面
Ltbf1 = request("id_tb")
response.write "Ltbf1"&Ltbf1
this is my header variable send
但是在接收页面无法获取值。
你可以试试
Ltbf1 = request("id_tb[]")
希望有用!!!
我想通过 ajax 发送数组值并接收但是在 ajax URL 页面中它得到 none 值我想知道如何发送和接收,请
在ajax发送页面的
$('#Available').click(function(){
$.ajax({
url:"../clientlist/commisstion_api.asp",
data:{id_tb:id_tb},
global:false,
success:function(data){
var obj = JSON.parse(data);
},
error:function(xhr, ajaxOptions, thrownError){
console.log(xhr.status);
console.log(thrownError);
}
});
});
在接收页面
Ltbf1 = request("id_tb")
response.write "Ltbf1"&Ltbf1
this is my header variable send
但是在接收页面无法获取值。
你可以试试
Ltbf1 = request("id_tb[]")
希望有用!!!