我开始学习json和ajax,我有这个json文件:
domain
我如何从此文件中获取第一个$(document).ready(function(){
$.getJSON("https://myurl.com/api.json", function(data){
console.log(data.children[0].data.domain);
});
});
?
我试试:
this
它不起作用:(
答案 0 :(得分:1)
仔细查看您的数据和代码。
你有data
变量,然后data
对象有children
数组,所以你可以像这样访问它
data.data.children[0].data.domain
答案 1 :(得分:1)
试试这样:
$(document).ready(function(){
$.getJSON("https://myurl.com/api.json", function(data){
console.log(data.data.children[0].data.domain);
});
});