私はember-modelを使用しているアプリを持っていますが、ID 以外のものを検索に渡すと、単一のモデルを取得できません。
私のコードはもっと理にかなっています:
currentMembership: function() {
var mem = Membership.find({ user_id: 1, organization_id: 1, limit: 1 });
return mem.get('firstObject');
}.property()
私も使用fetch
してみましたが、役に立ちませんでした:
currentMembership: function() {
return Membership.fetch({ user_id: 1, organization_id: 1, limit: 1 }).then(
function(results) {
return results.get('firstObject');
}
);
}.property()
応答を強制的に最初のオブジェクトから構築し、recordarray の代わりに単一のモデルを返すようにする方法はありますか?