gpt4 book ai didi

javascript - 是否可以在使用 console.log 将其发送到服务器时查看此 json 数据?

转载 作者:行者123 更新时间:2023-12-02 23:16:24 24 4
gpt4 key购买 nike

我想查看发送到服务器的 JSON 数据并发送它。但是,我无法理解 Promise 对该函数的作用。

如果我console.log()函数体,我会得到Promise {pending}。我不能在 promise 之外 console.log(users) 因为“users”超出了范围。

因此,有没有办法让我查看所提供的代码体内的数据?

function getAll(req, res, next) {
userService.getAll().then(users => res.json(users)).catch(err =>
next(err));
}

预期结果是控制台中的一些 JSON 数据。

最佳答案

你可以这样做:

function getAll(req, res, next) {
userService.getAll().then(users => {
console.log(users)
res.json(users)
}).catch(err =>
next(err));
}

关于javascript - 是否可以在使用 console.log 将其发送到服务器时查看此 json 数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57151949/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com