gpt4 book ai didi

javascript - Node.js/Sails.js 应用程序中的范围和/或上下文

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

我在 Sails.js 应用程序上运行此代码,结果是一个空的 JSON。我已经阅读了几页有关范围和上下文的内容,但无法找到我做错了什么。

    var evoluciones
HC.find({ id: req.param('id') }).then(records => {
evoluciones = records;
})
return res.json(evoluciones)

提前致谢。

最佳答案

@mechuda,你可以试试这个

HC.find({ id: req.param('id') })
.then(evoluciones=> {
// to do something
return [evoluciones] ;
})
.spread((evoluciones ) => {
return res.json(evoluciones )
})
.fail( error => {
sails.log.error(error);
return res.negotiate(error);
});

关于javascript - Node.js/Sails.js 应用程序中的范围和/或上下文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44599018/

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