gpt4 book ai didi

javascript - 无法在 AJAX 调用中从 JSON 获取值?

转载 作者:行者123 更新时间:2023-12-03 04:54:36 24 4
gpt4 key购买 nike

我是新手:)

我搜索了我的问题,有一些主题,但它们不像我的具体问题。

我有一个更新表单的 Ajax 调用,我可以在 console.log() 中看到值,但我无法在输入或 div 中插入值,在这里我的代码:

$(document).ready(function() {
$.ajax({
type: "GET",
url: 'my-web-service',
dataType: "text",
success: function(data) {
console.log(data)
var json = $.parseJSON(data);

for (var i = 0; i < json.length; ++i) {
$('#json').append('<div>' + json[i].name + '</div>');
}
console.log(json)
}
});
});
<小时/>

我的 JSON 数据是:

{
"experience": [
[
"58b407cd30f8c7a508004210",
{
"artistInfo": {
"id": "f8d3a411",
}
},
{
"name": "test",
"description": "testing",
"tipology": null,
"email": "ext_link",
"externalLink": "www.mywebstite.com",
}
]
]
}

最佳答案

经验是数组中的数组(???),您应该修复它或相应地访问它。

关于javascript - 无法在 AJAX 调用中从 JSON 获取值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42487928/

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