gpt4 book ai didi

javascript - 从响应中获取 json 值

转载 作者:可可西里 更新时间:2023-11-01 02:29:49 25 4
gpt4 key购买 nike

{"id":"2231f87c-a62c-4c2c-8f5d-b76d11942301"}

如果我提醒我看到上面的响应数据,我该如何访问 id 值?

我的 Controller 像这样返回:

return Json(
new {
id = indicationBase.ID
}
);

在我的 ajax 成功中,我有这个:

success: function(data) {
var id = data.id.toString();
}

它说 data.idundefined

最佳答案

如果响应是 json 而不是字符串那么

alert(response.id);
or
alert(response['id']);

否则

var response = JSON.parse('{"id":"2231f87c-a62c-4c2c-8f5d-b76d11942301"}');
response.id ; //# => 2231f87c-a62c-4c2c-8f5d-b76d11942301

关于javascript - 从响应中获取 json 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5625149/

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