导航栏: 首页 评论列表

fetch post

默认分类 2024/03/08 23:20

fetch('/echo/json/',
{
    headers: {
      'Accept': 'application/json',
      'Content-Type': 'application/json'
    },
    method: 'POST',
    body: JSON.stringify({a: 1, b: 2})
})
.then(function(res){ console.log(res) })
.catch(function(res){ console.log(res) })


>> 留言评论