Axios 发送 json 数据
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
<script src="js/axios-0.18.0.js"></script>
<script>
var userList = [];
userList.push({username: "zhangsan", age: 18});
userList.push({username: "lisi", age: 28});
console.log(JSON.stringify(userList));
console.log(typeof JSON.stringify(userList))
axios({
method: "post",
url: "${pageContext.request.contextPath}/user/quick15",
data: JSON.stringify(userList),
headers: {
'Content-Type': 'application/json;charset=UTF-8'
}
}).then(resp => {
})
</script>
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献5条内容
所有评论(0)