之前使用get方法時總是下意識地把參數拼接在鏈接上,最近聽說vue-resource的get方法使用時可以直接像post那樣進行傳參,無奈找不到其文檔地址,想直接請假一下,這個參數該怎麼個傳法呢?
我用下面這個方法無效哦~
let arg = {search: 'haha'}
this.$http.get(link, arg, {
...
}
女神的闺蜜爱上我2017-06-15 09:25:35
getInfo(){
const params = {partnerId: partnerId, openId: openId}
this.$http.get(commonUrl + "/restful/member2?op=get", {params:params}).then(response => {
console.log(response)
if (response.data.errcode === 0) {
this.dataInfo = response.data
} else {
// this.$router.push({path: '/Register'})
}
Indicator.close()
}, response => {
});
},
這樣。 。 。謹供參考
現在vue比較推崇使用axios
axios.get('/user', {
params: {
ID: 12345
}
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
這應該是你想要的~