gpt4 book ai didi

node.js - 如何在 Node js 中从服务返回两个以上的值

转载 作者:行者123 更新时间:2023-12-03 22:26:49 25 4
gpt4 key购买 nike

我有一个 Controller /user.js 文件,可以使用 service/user.js 中的函数获取数据
从服务中的 getUsers 函数我不能返回超过 1 个值。例如我想返回 return{User,pages} 。但是,我在像 return{User,pages} 一样返回时出错
以下是我在使用 return{User,pages} 时遇到的错误

userService.getUsers(...).then is not a function



Controller /user.js
function getUsers(req, res){
userService.getUsers({
page_no:req.body.page_no,
previous:req.body.previous
}
)
.then(data => res.send(data));
};

服务/user.js
const getUsers = function (data) { 
let limit = 10; // number of records per page
let offset = 0;
let page = data.page_no; // page number
data = Users.findAll({where: {
DeletedAt: {
$eq: null
}
}})
const pages = Math.ceil(data.count / limit);
offset = limit * (page - 1);
const User = Users.findAll({
attributes: ['id', 'first_name', 'last_name', 'role_id','login','is_active'],
limit: limit,
order: [
['createdAt', 'DESC']
],
offset: offset,
$sort: { id: 1 },
where: {
DeletedAt: {
$eq: null
}
}
})
return User
};

最佳答案

看起来您正在使用一些返回 Promise 的 ORM。

当您只返回 User 时, User 的类型(可能,因为您没有收到错误)是 Promise ,因此该函数将返回一个 promise ,您可以调用 .then 方法。

但是,当您返回 { User, pages } 时,您返回的不是 promise 而是 Object 并且对象没有 then 方法,这就是您收到错误的原因。

当您返回对象 { User, pages } 时,您可以更改代码以提取 promise 并对其调用 then 方法:

function getUsers(req, res){
const { User, pages } = userService.getUsers({
page_no:req.body.page_no,
previous:req.body.previous
})
// Call the then User which is a Promise
User.then(data => res.send(data))
};

关于node.js - 如何在 Node js 中从服务返回两个以上的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56163101/

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