js: 发请求,浏览器调试, fetch

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

在浏览器console面板输入即可携带cookie

你可能感兴趣的:(js,javascript,html5,node.js)