目录

axios jquery ajax

axios @RequestBody

post

javascript 复制代码
axios.post('/vue/insert', this.newStudent)
                    .then(r => {
                    console.log('Student added successfully:', r);
                }).catch(e => {   console.error('There was an error adding the student!', e);     });

后端

java 复制代码
@RestController
@RequestMapping("/vue")
public class VueController {
    @PostMapping("/insert")
    String test(@RequestBody Map map){
        System.out.println(map);
        return "OK";
    }

}

jquery post JSON.stringify @RequestBody

ajax

javascript 复制代码
 $.ajax({
                      type:'post',
                      url:"vue/insert",
                      data: JSON.stringify(this.newStudent),
                      contentType:"application/json",
                  }).then(r=>{console.log(r)})

post

javascript 复制代码
 $.ajaxSetup({
                    headers: {
                        'Content-Type': 'application/json'
                    }
                });
                $.post('/vue/insert',JSON.stringify( this.newStudent)).then(r=>{
                        console.log("then:"+r)
                    }).fail(e=>{console.log("fail"+e)})

后端

java 复制代码
@RestController
@RequestMapping("/vue")
public class VueController {
    @PostMapping("/insert")
    String test(@RequestBody Map map){
        System.out.println(map);
        return "OK";
    }

}

jquery post @RequestParam

post

javascript 复制代码
 $.post('/vue/insert',this.newStudent).then(r=>{
                        console.log("post  then:"+r)
                    }).fail((a,b,c)=>{console.log(a)})

ajax

javascript 复制代码
$.ajax({
                      type:'post',
                      url:"vue/insert",
                      data: this.newStudent
                  }).then(r=>{console.log("ajaxthen:"+r)})

jquery get @RequestParam

get

javascript 复制代码
$.get('/vue/insert',this.newStudent).then(r=>{
                        console.log("get  then:"+r)
                    }).fail((a,b,c)=>{console.log(a)})
本文是转载文章,点击查看原文
如有侵权,请联系 xyy@jishuzhan.net 删除
相关推荐
jakeswang1 天前
查询条件与查询数据的ajax拼装
前端·ajax
小旋风012342 天前
封装可拖动弹窗(vue jquery引入到html的版本)
vue.js·html·jquery
ps酷教程2 天前
OkHttp&HttpClient
okhttp·httpclient
十六ᵛᵃᵉ3 天前
day6_FlinkSQL实战
java·redis·ajax
微臣愚钝4 天前
【12】Ajax的原理和解析
前端·javascript·ajax
Json_4 天前
jQuery选项卡小练习
前端·深度学习·jquery
Json_4 天前
jQuery打字机小练习
前端·深度学习·jquery
weixin_443566985 天前
39-Ajax工作原理
前端·ajax
东东__net6 天前
27_promise
okhttp
阿湯哥6 天前
SSE SseEmitter.completeWithError(e) 触发的处理逻辑
okhttp