能帮我解决这个问题吗?如何访问PromiseValue中的值?我正在
[[PromiseStatus]] : “解决” [[PromiseValue]] :
这是我的代码
function getMovies(searchTerm){
fetch('http://www.omdbapi.com/?t='+searchTerm+'&apikey=xxxxxxx')
.then((resp) =>{console.log(resp.json())
})
.catch((err) =>{console.log(err)
});
}
})
我正在收到响应(resp),但我认为诺言尚未完成?但是,我还需要写些什么。然后才能最终获得当前在[[PromiseValue]]
中的最终数据