我有一个调用iTunes API的函数,我从中返回一个对象数组。我的主函数调用此(和其他承诺)并等待所有承诺完成。但是,对于iTunes API承诺,返回的数组始终是“未定义”。
我的承诺:
function getiTunesMusic() {
var options = {
uri: "https://itunes.apple.com/lookup?id=62820413&entity=song&limit=10",
json: true
}
retrieve(options) // This does a GET request
.then(repos => {
var result = repos.results
result.shift() // I get the array of results, minus the first result
console.log(result) // This prints out the full array of song objects
return result
})
.catch((error) => {
return null
})
}
我的代码等待promises完成块:
Promise.all(promises)
.then(objects => {
var music = objects[0]
console.log("music", objects[0]) // This prints out "music undefined"
profile.music = music
}
奇怪的是,当我打印出iTunes api结果时,我正在诺言中返回,它打印得很好。但是,在promise完成块中,它总是未定义的。我该如何解决这个问题?
答案 0 :(得分:1)
您没有从函数返回promise,因此返回 undefined 的默认返回
尝试
return retrieve(options) // this returns the promise
取代
retrieve(options)