📅  最后修改于: 2022-03-11 15:04:29.758000             🧑  作者: Mango
let url = 'https://www.zedge.net/wallpapers';
fetch(url)
.then(res => res.json())
.then((out) => {
console.log('Checkout this JSON! ', out);
})
.catch(err => { throw err });