4

フィクスチャには連絡先のリストが含まれ、各連絡先には連絡先タイプがあります。.findQuery() を使用して連絡先レコードをフィルタリングしようとしていますが、次のエラーがスローされます:

Uncaught TypeError: Object function () {.....} has no method 'findQuery' 

ここにコードをリストしました:

Grid.Store = DS.Store.extend({
                  revision: 12,
                  adapter: 'DS.FixtureAdapter'
            }); 

    Grid.ModalModel =  DS.Model.extend({
    fname: DS.attr('string'),
    lname: DS.attr('string'),
    email: DS.attr('string'),
    contactno: DS.attr('string'),
    gendertype: DS.attr('boolean'),
    contactype: DS.attr('number')
});

Grid.ModalModel.FIXTURES = [
                       {
                         id: 1,
                         fname: "sachin",
                         lname: "gh",
                         email: "gh",
                         contactno: "4542154",
                         gendertype: true,
                         contactype: 1
                       },
                       {
                         id: 2,
                         fname: "amit",
                         lname: "gh",
                         email: "gh",
                         contactno: "4542154",
                         gendertype: true,
                         contactype: 2
                       },
                       {
                         id: 3,
                         fname: "namit",
                         lname: "gh",
                         email: "gh",
                         contactno: "4542154",
                         gendertype: true,
                         contactype: 1
                       }
                      ];

コントローラーコード:

        totpersonalcontact:function(){ 
        return Grid.ModalModel.findQuery({ contactype: 2 }).get('length'); 
    }.property('@each.isLoaded'),
    totfriendcontact:function(){ 
        return Grid.ModalModel.findQuery({ contactype: 3 }).get('length'); 
    }.property('@each.isLoaded')

.findQuery を .query に変更しましたが、毎回長さが 0 として表示されます。

4

1 に答える 1

17

に変更findQueryするだけqueryです。

この後、コンソールにエラー メッセージが表示されます。

Assertion failed: Not implemented: You must override the DS.FixtureAdapter::queryFixtures method to support querying the fixture store. 

メッセージの説明のように、DS.FixtureAdapter#queryFixtures. に渡されるパラメーターはqueryFixtures、records、query、type です。どこ:

  • Recordsフィルタリングするプレーンな JavaScript オブジェクトの配列です。
  • Queryqueryember データ クラスのメソッドに渡されるオブジェクトです。
  • Typeクエリが呼び出される ember データ クラスです。

そして、返されるのはフィルタリングされたデータです。

たとえば、次のような単純な where を実行するには:

App.Person.query({ firstName: 'Tom' })

次の方法で再度開くだけDS.FixtureAdapterです。

DS.FixtureAdapter.reopen({
    queryFixtures: function(records, query, type) {        
        return records.filter(function(record) {
            for(var key in query) {
                if (!query.hasOwnProperty(key)) { continue; }
                var value = query[key];
                if (record[key] !== value) { return false; }
            }
            return true;
        });
    }
});

これがライブデモです。

于 2013-08-10T20:07:52.670 に答える