使用 axios 获取数据并使用 express 发布到本地主机

Getting data with axios and posting to localhost using express

我是 javascript 的新手,我正在尝试从 API 中获取数据,然后 post 将其传输到我自己的服务器 (localhost)。

我使用以下 axios 获取数据:

async function getNCAA() {
    axios
    .get(`https://api.the-odds-api.com/v4/sports/${sportKey1}/scores/?daysFrom=1&apiKey=${apiKey}`)
    .then((res) => {
        console.log(res.data)
        console.log("Remaining requests", res.headers["x-requests-remaining"]);
        console.log("Used requests", res.headers["x-requests-used"]);
        return res.data
    })
    .catch((error) => {
        console.log("Error status", error.response.status);
        console.log(error.response.data);
        return error
    });
}

分配数据

let result = getNCAA();

然后尝试使用快递发送:

app.get('/', (req, res) => {
    res.send(result);
});

结果returns一个我不知道如何访问的 Promise 对象。

我过去可以使用 useState 访问这些数据,但在这个特殊情况下我不是 运行 React 应用程序

不确定这是否是个好习惯,但我只是将它们嵌套在一起并且有效。

async function getNCAA() {
    axios
    .get(`https://api.the-odds-api.com/v4/sports/${sportKey1}/scores/?daysFrom=1&apiKey=${apiKey}`)
    .then((result) => {
        // console.log(res.data)
        console.log("Remaining requests", result.headers["x-requests-remaining"]);
        console.log("Used requests", result.headers["x-requests-used"]);

        app.get('/', (req, res) => {
            res.send(result.data);
        });
        })
    .catch((error) => {
        console.log("Error status", error);
    });

    return ;
}

getNCAA();