select,distinct在sailsjs中不起作用

时间:2014-01-17 07:03:38

标签: sails.js

几天前我在sailsjs工作。

我只是无法弄清楚为什么我的sailsjs应用程序不支持select或distinct它说这不是defind。

我错过了什么吗?

有人帮我解决这个问题。

我试试这个

Blog.find().select('keyfield').sort('createdAt DESC').done(function(err, selectedKeyfield) {
              res.view('home/index',{
              Keyfield: selectedKeyfield
        });

提前谢谢....

1 个答案:

答案 0 :(得分:1)

如果您使用的是稳定版本的Sails,现在类似0.9.x,那么.select().distinct()尚未推出。

以下是.distinct()的公开请求: https://github.com/balderdashy/waterline/issues/60 https://github.com/balderdashy/sails-mongo/pull/55

以下是使用投影和排序的问题,这将为您提供有关如何模拟.select()的提示: https://github.com/balderdashy/sails-mongo/issues/53