hanliuxinming 2019-06-30
1. localhost:8080/index?id=1
@RequestParam(value = "grade", defaultValue = "") String grade)
2. localhost:8080/index/{reportType} localhost:8080/index-{reportType}
@RequestMapping("/commonReportForm/{reportType}") @ResponseBody public ModelAndView index(@PathVariable(name = "reportType", required = false) Integer reportType, ModelAndView mv) { ....}
@RequestMapping("/commonReportForm-{reportType}") @ResponseBody public ModelAndView index(@PathVariable(name = "reportType", required = false) Integer reportType, ModelAndView mv) { ....}
public Object save( User user) {....}
前端传参方式:
$.ajax({ type: "POST", url: dbrwListpath, data: { "id": id, "name": name, }, dataType: "json", success: function (data) { //do something.. }, error: function (data) { //do something.. } });
public Object save(@RequestBody User user) {....}
前端ajax:
$.ajax({ type: "POST", headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, url: dbrwListpath, data: { "id": id, "name": name, }, dataType: "json", success: function (data) { //do something.. }, error: function (data) { //do something.. } });
public Object save(@RequestBody DataDto dto) {....}
public class DataDto{ //学校id private Integer schoolId; //幼儿信息 private List<User> users; //get set ... }
前端ajax数据格式:
//示例 var user = []; for (var i = 0; i < clen; i++) { var c = {}; c.id = 1; c.name = tom; user.push(c); } //datas属性名需与Dto实体的属性名相同 var datas = { schoolId:schoolId, user:user }; $.ajax({ type: "POST", headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, url: "/comprehensiveDeclaration/comprehensive-" + comprehensiveId + "/step1-save", data: JSON.stringify(datas), dataType: "json", success: function (response) { //do something.. }, error: function (data) { //do something.. } });
结束数据方法的参数,该如何定义?-- 集合为自定义实体类中的结合属性,有几个实体类,改变下标就行了。<input id="add" type="button" value="新增visitor&quo
本文实例讲述了php+ ajax 实现的写入数据库操作。分享给大家供大家参考,具体如下:。<input class="tel" type="text" placeholder="请输入您的手机号码&q