浏览器fetch api

由于Chrome(和大多数其他浏览器)支持Fetch API,因此现在很容易从devtools控制台发出HTTP请求。



要GET例如一个JSON文件:



fetch(‘https://jsonplaceholder.typicode.com/posts/1’)
.then(res => res.json())
.then(console.log)



fetch(‘https://jsonplaceholder.typicode.com/posts’, {
method: ‘POST’,
body: JSON.stringify({
title: ‘foo’,
body: ‘bar’,
userId: 1
}),
headers: {
‘Content-type’: ‘application/json; charset=UTF-8’
}
})
.then(res => res.json())
.then(console.log)



https://qastack.cn/programming/14248296/making-http-requests-using-chrome-developer-tools



浏览器右键可以copy as fetch 或者 copy as fetch node.js


Category web