📜  什么是 jaavascript fetch 中的请求负载 - CSS 代码示例

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

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