admin管理员组

文章数量:1529447

fetch(new Request('url',{
    method:'POST', 
    headers: {'Content-Type': 'application/x-www-form-urlencoded'},
    body:"param1=value1&param2=value2"
})).then((resp)=>{console.log(resp)})

按F12,在控制台输入以上格式即可发送POST 请求。

本文标签: 浏览器chromepost