ajax post
Posted d-i-p
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax post相关的知识,希望对你有一定的参考价值。
前端
$.post("url",JSON.stringify(
a:a,
...
), function(data)
, 'json');
后端
@PostMapping(value="url")
@ResponseBody
public String createOrders(@RequestBody String jsonStr)
以上是关于ajax post的主要内容,如果未能解决你的问题,请参考以下文章