我試圖用貓鼬構造查詢相當於這個SQL:貓鼬查詢未定義
select * from problems where tutorialNumber is not null
我已經試過:
var q = Problem.find().where('tutorialNumber').ne(undefined);
q.exec(callback);
它返回一個錯誤:CastError:投射到字符串未能在路徑「tutorialNumber」的值「未定義」
什麼是正確的方法來做到這一點?
請張貼您的架構的'問題'模型。這可能是根源問題所在。 –
你試過'.ne(null)'而不是'.ne(undefined)'嗎? – PinnyM