我的ajax请求



Ajax没有填充我的表与所有的信息从json编码值是{"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
        }
});

尝试删除空格并用";"替换第一行中的",":var idvalue = $("#modal-name");。它会解决你的一些问题。

相关内容

  • 没有找到相关文章

最新更新