Axios "TypeError: Cannot read properties of undefined (reading 'then')" on request
Axios "TypeError: Cannot read properties of undefined (reading 'then')" on request
我正在尝试使用 Axios 向我的 Discord 机器人发出 GET 请求,但我遇到了问题。
var axios = require("axios");
var response;
function getItemPrice(name, time) {
axios.get("https://url.com/api/id=${name}&time=${time}")
}
response = getItemPrice("name", "time");
response.then(function(dataResponse){
console.log(dataResponse.data);
}
).catch(function(error){
if(error){
console.log(error);
}
});
我更改了URL。
在控制台中显示 ↓
TypeError: Cannot read properties of undefined (reading 'then')
您必须在 URL 中使用反引号 (``) 才能使用模板文字。
并且还使用函数 getItemPrice 中的 return。
示例:
axios.get(`https://url.com/api/id=${name}&time=${time}`)
我正在尝试使用 Axios 向我的 Discord 机器人发出 GET 请求,但我遇到了问题。
var axios = require("axios");
var response;
function getItemPrice(name, time) {
axios.get("https://url.com/api/id=${name}&time=${time}")
}
response = getItemPrice("name", "time");
response.then(function(dataResponse){
console.log(dataResponse.data);
}
).catch(function(error){
if(error){
console.log(error);
}
});
我更改了URL。 在控制台中显示 ↓
TypeError: Cannot read properties of undefined (reading 'then')
您必须在 URL 中使用反引号 (``) 才能使用模板文字。 并且还使用函数 getItemPrice 中的 return。
示例:
axios.get(`https://url.com/api/id=${name}&time=${time}`)