<!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>
版权声明:本文为weixin_45592677原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。