fetch初体验

  |   0 评论   |   0 浏览

背景

初体验

第一个例子

fetch('http://example.com/movies.json')
  .then(function(response) {
    return response.json();
  })
  .then(function(myJson) {
    console.log(myJson);
  });

Body类

  • arrayBuffer()
  • blob()
  • json()
  • text()
  • formData()

参考