无法获取回调函数返回的所需对象
2021-11-04
34
我试图从对象数组中返回所需的对象,其中数组索引作为参数传递给回调函数。例如,如果我想要数组索引 0 处的对象,我会以这种方式调用 getInfo getInfo(0, data) 。但回调函数 仅返回索引 而不是值。我尝试使用名为 myfunc 的简单函数进行测试,但这给了我想要的结果。这里有什么问题?
这是我的代码
const getInfo = (resource, callback) => {
let request = new XMLHttpRequest();
request.addEventListener('readystatechange', () => {
if(request.readyState === 4 && request.status === 200 )
{
const data = JSON.parse(request.responseText);
console.log(data[resource]);
myfunc(resource, data[resource]);
callback(resource, data[resource]);
}
});
request.open('GET','values.json');
request.send();
};
const myfunc = (val,arr) =>{
console.log(val,arr);
}
getInfo(0, data => {
console.log(data);
getInfo(2, data => {
console.log(data);
getInfo(1, data => {
console.log(data);
});
});
});
values.json
[
{"name" : "MM", "height" : "5 ft 2 inches"},
{"name" : "DD", "height" : "5 ft 3 inches"},
{"name" : "AA", "height" : "5 ft 5 inches"}
]
控制台输出
1个回答
你的回调只有一个参数,但是调用回调时你发送了两个参数
getInfo(0, (index,data) => {
console.log(data);
getInfo(2, (index,data) => {
console.log(data);
getInfo(1, (index,data) => {
console.log(data);
});
});
});
adhi narayan
2021-11-05