📌  相关文章
📜  如何在 ajax 成功中将 json 转换为 javascript 对象 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:59.650000             🧑  作者: Mango

代码示例1
$.ajax({
    url: "http://localhost:11141/Search/BasicSearchContent?ContentTitle=" + "تهران",
    type: 'GET',
    cache: false,
    success: function(result) {
        //  alert(jQuery.dataType);
        if (result) {
            //  var dd = JSON.parse(result);
            alert(result[0].Id)
        }

    },
    error: function() {
        alert("No");
    }
});