gpt4 book ai didi

node.js - 环回在查询中包含远程方法

转载 作者:太空宇宙 更新时间:2023-11-04 02:32:08 25 4
gpt4 key购买 nike

我正在寻找一种在进行查询时包含远程方法的结果的方法。

例如:我正在查询客户模型。要包含相关模型,您可以使用包含过滤器 { filter: { include: ['orders'] } }

在返回结果之前,我需要对一些相关模型进行一些处理。

我正在寻找类似于 Mongoose 的虚拟属性的东西。这是否可能,或者我是否必须在结果返回后为每个客户创建单独的请求?

最佳答案

您可以扩展模型类并使用 getter 函数添加属性,以便它可以从其他持久属性中获取值。

例如:

module.exports = function(Person) {
Object.defineProperty(Person.prototype,
"fullName",
{
get : function() { return this.firstName + ' ' + this.lastName; }
});
}

http://docs.strongloop.com/display/LB/Extend+your+API

关于node.js - 环回在查询中包含远程方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25732251/

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