gpt4 book ai didi

javascript - 我如何使用 jquery 拆分 ajax 返回值

转载 作者:行者123 更新时间:2023-11-30 09:31:12 27 4
gpt4 key购买 nike

我想使用 jQuery 拆分 ajax 返回值。

这是我的代码:

var url = "/StudentProgress/GetStudProgDet/";
$.ajax({
url: url,
data: { currentAcadYr: iAcademicYearText, currentSem: iSemesterText },
cache: false,
contentType: "application/json; charset=utf-8",
dataType: "json",
type: "GET",
success: function (data) {

var result = $(data).text().split(':');
var ProgAcadYearCode = result[0].ProgAcadYearCode;
var productSize = result[1];

// alert(data.ProgAcadYearCode);
//$("#ToProgressAcademicYearId option").filter(function () {
// return this.text == testsem;
//}).attr('selected', true);
},
error: function (reponse) {
alert("error : " + reponse);
}
});

我得到了这样的结果:

data = {
success: true,
progAcadYearCode: 20172018,
progAcadYearId: 17,
progressSemId: 47,
progressSemNo: 2
}

如何使用 jQuery 从 JSON 中提取所需的值?

最佳答案

根据您显示的data,您必须直接获取它的属性,如下所示:-

success: function (data) {
console.log(data.success);
console.log(data.progAcadYearCode); //and so on
},

关于javascript - 我如何使用 jquery 拆分 ajax 返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46148015/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com