<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>测试</title>
<script>
fetch('http://localhost:8080/web-project-demo/user/test', {
method: 'post',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
'name':'lili'
})
})
.then((response) => response.json())
.then((response) => {
console.log(response)
})
</script>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
</body>
</html>
js fetch发送post请求
于 2022-04-29 09:57:22 首次发布