无法获得回调函数返回的所需对象

Unable to get the required object returned from the callback function

我正在尝试 return 对象数组中的所需对象,其中数组索引作为参数传递给回调函数。例如。如果我想要数组索引 0 处的对象,我会这样调用 getInfo getInfo(0, data)。但是回调函数 仅 return 返回索引 而不是值。我尝试使用名为 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"}
]

控制台输出

你的回调只有一个参数,但是你在调用回调时发送了两个参数

getInfo(0, (index,data) => {
    console.log(data);
    getInfo(2, (index,data) => {
        console.log(data);
        getInfo(1, (index,data) => {
                console.log(data);
        });
    });
});