📜  在 javascript 代码示例中获取 url

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

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