我的 ajax 请求
My ajax request
Ajax 未使用来自 json 的所有信息填充我的 table 编码值是 {"name":"1","...":"Value"}
具有字符串值的字段,而整数不是。
var idvalue = $("#modal-name"),
$.ajax({
type: "POST",
url: "ajax.php",
data: {
action: "getBudget",
userId : userId
},
success : function(data) {
//parse result as JSON
var res = JSON.parse(data);
//update modal fields
idvalue . text(res.name);
// other ID to populate
}
});
尝试删除 space 并将“,”替换为“;”第一行:var idvalue = $("#modal-name");
。它将解决您的一些问题。
Ajax 未使用来自 json 的所有信息填充我的 table 编码值是 {"name":"1","...":"Value"}
具有字符串值的字段,而整数不是。
var idvalue = $("#modal-name"),
$.ajax({
type: "POST",
url: "ajax.php",
data: {
action: "getBudget",
userId : userId
},
success : function(data) {
//parse result as JSON
var res = JSON.parse(data);
//update modal fields
idvalue . text(res.name);
// other ID to populate
}
});
尝试删除 space 并将“,”替换为“;”第一行:var idvalue = $("#modal-name");
。它将解决您的一些问题。