📜  在 js 中获取 - Javascript 代码示例

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

代码示例6
fetch('http://example.com/movies.json')
  .then((response) => {
    return response.json();
  })
  .then((myJson) => {
    console.log(myJson);
  });