📜  chrome 开发者工具发送获取请求 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:34.428000             🧑  作者: Mango

代码示例2
fetch('https://jsonplaceholder.typicode.com/posts/1')
  .then(res => res.json())
  .then(console.log)