1 回答

TA貢獻(xiàn)1843條經(jīng)驗(yàn) 獲得超7個(gè)贊
我得到了我提到的問(wèn)題的解決方案,在這種情況下,我需要使用 Get 方法中的參數(shù)。
axios({
method: 'get',
url: "http://192.168.0.2:3333/report",
responseType: 'json',
headers: {},
params: {
name: ["'acem'", "'sal grosso'"]
}
})
.then(function (res) {
// handle success
console.log("######## CARD CALL - IT's OK!!! :: ", res.data);
setRecipeList(res)
})
.catch(function (error) {
console.log('API CALL - /report - error: ',error);
})
這就是我用來(lái)獲取所需結(jié)果并將查詢參數(shù)發(fā)送到 API 的方法。
非常感謝您的回答。
添加回答
舉報(bào)