色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

vue $http get

錢衛國1年前9瀏覽0評論

在Vue中,可以通過$http對象發送Ajax請求。$http.get方法可以發送一個GET請求,并返回一個Promise對象。以下是一個基本的示例:

Vue.$http.get('/api/user')
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error.response.data);
});

該示例發送一個GET請求到/api/user,并在響應成功后打印響應數據。如果出現錯誤,將打印錯誤響應數據。

您還可以將查詢參數添加到GET請求中,如下所示:

Vue.$http.get('/api/user', {params: {id: 1}})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error.response.data);
});

該示例向GET請求添加了一個名為id的查詢參數,并在響應成功后打印響應數據。

您還可以在請求頭中添加自定義標頭:

Vue.$http.get('/api/user', {headers: {'X-Request-ID': '123456'}})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error.response.data);
});

該示例在請求頭中添加了一個名為X-Request-ID的自定義標頭,并在響應成功后打印響應數據。

總的來說,$http.get允許您發送GET請求,并可以添加查詢參數和自定義標頭。