如何让vue中变量作为一个参数传递
答案:1 悬赏:30 手机版
解决时间 2021-01-09 17:35
- 提问者网友:最美的风景
- 2021-01-08 23:33
如何让vue中变量作为一个参数传递
最佳答案
- 五星知识达人网友:山河有幸埋战骨
- 2021-01-09 00:04
使用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两参数第参数响应功调函数第二参数响应失败调函数
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯