javascript fetch

علی ذوالفقار
1400/09/28 10:55:12 (432)
fetch('http://example.com/movies.json')
  .then(response => response.json())
  .then(data => console.log(data));
Back