「vue.js入門」axios.get()の使い方

2018年3月8日

サンプルコード
axios.get('/ccc/shop/get_classify’, {
params: {
sid: 23124222
},
headers: {
“BBG-Key": “ab9ef204-3253-49d4-b229-3cc2383480a6"
}
})
.then(function (response) {
if (response.data.code == 130) {
items = response.data.data;
store.commit('update’, items);
console.log(items);
}
console.log(response.data.code);
}).catch(function (error) {
console.log(error);
console.log(this);
});

IT

Posted by arkgame