axios中GET和POST请求传参方式
程序员文章站
2022-04-15 13:35:17
...
1.get请求只需拼接在接口后边即可
_that.$http.get('/syncResourceService/getSyncConfig?serviceIndexCode='+this.serviceIndexCode).then(function(res) {
if (res && res.data && res.data.code == 0) {
let data = res.data.data;
_that.supportList = data.supportList;
_that.typeCodes = data.configList;
} else {
_that.$message.error(res.data.msg);
}
}, function() {});
2.post请求及需要对象方式传参
params = {
typeCodes:_that.typeCodes,
serviceIndexCode:_that.serviceIndexCode
};
_that.$http.post('/syncResourceService/updateSyncConfig',params).then(function(res) {
if (res && res.data && res.data.code == 0) {
_that.$message({
message: '自动同步设置修改成功',
type: 'success'
});
_that.dialogVisible = false;
} else {
_that.$message.error(res.data.msg);
}
}, function() {});
上一篇: Swagger异常之----AbstractSerializableParameter:Illegal DefaultValue null for parameter type integer解决方案
推荐阅读
-
vue 2.x 中axios 封装的get 和post方法
-
微信小程序授权 获取用户的openid和session_key【后端使用java语言编写】,我写的是get方式,目的是测试能否获取到微信服务器中的数据,后期我会写上post请求方式。
-
在Restful风格中,axios请求中, method:“put“/‘delete‘/‘get‘/‘post‘四种方式
-
Vue-cli中axios传参的方式以及后端取的方式
-
浅谈HTTP中GET和POST请求方式的区别
-
SpringMVC中如何解决post和get请求的中文乱码问题
-
vue中axios调用分装的请求方法(get/post方式)
-
android webview 中 get 和 post 请求代码片段
-
JSP文件中的get和post方式区别
-
解决vue处理axios post请求传参的问题