2014-01-17 80 views
1

幾天前我在sailsjs工作。select,distinct在sailsjs中不起作用

我只是無法弄清楚爲什麼我的sailsjs應用程序不支持select或distinct,它說這不是defind。

我錯過了什麼嗎?

請有人幫我弄清楚這一點。

我試試這個

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

預先感謝您....

+0

只是爲了澄清:是'mysql'你正在使用的適配器? – bredikhin

+0

不,我使用帆mongo – Lucifer

回答

1

如果使用的是帆,這是現在像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

+0

感謝兄弟。這麼晚了,但感謝您的答覆,我現在使用帆0.10 – Lucifer