gpt4 book ai didi

loopbackjs - 环回添加非静态远程方法错误

转载 作者:行者123 更新时间:2023-12-03 01:02:31 26 4
gpt4 key购买 nike

我正在尝试向模型添加非静态远程方法。只需关注 code这里。不幸的是,我收到了一些错误消息。

以下是我的代码

User.prototype.lastOrder = function(callback){
console.log('print this instance object: ', this);
callback(null)
};

User.remoteMethod('__get__lastOrder', {
isStatic: false,
accepts: [],
description: 'Get the latest order of the user',
http: {
path: '/lastOrder',
verb: 'get'
}

当我调用http://localhost:3000/v1/users/1/lastOrder时。它给了我以下错误:

enter image description here

最佳答案

remoteMethod 的第一个参数是函数名称。您定义的内容无效。您需要定义一个名为lastOrder 的函数,然后像这样修改您的代码:

User.prototype.lastOrder = function() {

}

User.remoteMethod('lastOrder', {
isStatic:false,
//more stuff here
}

关于loopbackjs - 环回添加非静态远程方法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36126458/

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