📜  如何从 javascript 代码示例中的 api 获取 json 对象

📅  最后修改于: 2022-03-11 15:03:03.988000             🧑  作者: Mango

代码示例1
let url = 'https://example.com';

fetch(url)
.then(res => res.json())
.then((out) => {
  console.log('Checkout this JSON! ', out);
})
.catch(err => { throw err });