我无法打印此网址的实际数据,我只能得到一个履行的承诺。有什么想法?
const getAllPhotos = async () => { await fetch("https://jsonplaceholder.typicode.com/photos").then(function ( response ) { return response.json(); }); }; console.log(getAllPhotos());
cyvaqqii1#
这与vue无关。在这里了解更多关于javascript的信息Promise:
Promise
const getAllPhotos = async () => { await fetch("https://jsonplaceholder.typicode.com/photos").then(function ( response ) { return response.json(); }); }; getAllPhotos() .then(data => console.log(data)) // or console.log(await getAllPhotos()) // in async function or es 2022
1条答案
按热度按时间cyvaqqii1#
这与vue无关。在这里了解更多关于javascript的信息
Promise
: