如何让vue中变量作为一个参数传递
1个回答
展开全部
使用vue.js与台实现数据交互利用vue-resource组件提供系列api:
get(url, [data], [success], [options])
post(url, [data], [success], [options])
put(url, [data], [success], [options])
patch(url, [data], [success], [options])
delete(url, [data], [success], [options])
jsonp(url, [data], [success], [options])
具体举例:
1、导入vue-resource
2、基于全局Vue象使用http
// 通someUrl获取台数据功执行then代码
Vue.http.get('/someUrl', [options]).then(successCallback, errorCallback);
3、Vue实例内使用$http
// $httpvue局部范围内实例
this.$http.get('/someUrl', [options]).then(successCallback, errorCallback);
说明:
发送请求使用then处理响应结then两参数第参数响应功调函数第二参数响应失败调函数
get(url, [data], [success], [options])
post(url, [data], [success], [options])
put(url, [data], [success], [options])
patch(url, [data], [success], [options])
delete(url, [data], [success], [options])
jsonp(url, [data], [success], [options])
具体举例:
1、导入vue-resource
2、基于全局Vue象使用http
// 通someUrl获取台数据功执行then代码
Vue.http.get('/someUrl', [options]).then(successCallback, errorCallback);
3、Vue实例内使用$http
// $httpvue局部范围内实例
this.$http.get('/someUrl', [options]).then(successCallback, errorCallback);
说明:
发送请求使用then处理响应结then两参数第参数响应功调函数第二参数响应失败调函数
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询