0

私はそのようなバックボーンモデルを持っています

define([
'underscore',
'backbone'
],function( _,Backbone) {
    var Task =  Backbone.Model.extend({
        //api url
        url:'',

        methodToURL: {
        'read': './api/tasks/index',
        'create': './api/tasks/task',
        'update': './api/tasks/task',
        'delete': './api/tasks/task'
        },
        sync: function(method, model, options) {
            options = options || {};
            options.url = this.methodToURL[method.toLowerCase()];

            Backbone.sync(method, model, options);
        }
    });
    return Task;
});

そして、コレクション

define(['underscore','backbone','models/task'],function( _,Backbone,Task) {
    var TaskCollection = Backbone.Collection.extend({
        //Model
        model:Task,
        //api url
        url:'',

        methodToURL: {
        'read': './api/tasks/index',
        'create': './api/tasks/task',
        'update': './api/tasks/task',
        'delete': './api/tasks/task'
        },

        sync: function(method, model, options) {
            options = options || {};
            options.url = this.methodToURL[method.toLowerCase()];

            Backbone.sync(method, model, options);
        },
        //construct
        initialize: function() {
            this.sort_key = 'end';
            this._model = new Task();
            this.fetch();
        },

        comparator: function(a,b) {
            a = a.get(this.sort_key);
            b = b.get(this.sort_key);
            return a > b ?  1
                 : a < b ? -1
                 :          0;
        },

        mark_complete: function(task_id) {
            var task_status = 0;
                    console.log(this.model);
            this.model.save({id:task_id,task_status:task_status});
        },

        mark_incomplete: function(task_id) {
            var task_status = 1;
                    console.log(this.model);
            this.model.save({id:task_id,task_status:task_status});
        },

        sort_by_status: function() {
            this.sort_key = 'task_status';
            this.sort();
        },

        sort_by_task_tag: function() {
            this.sort_key = 'task_group';
            this.sort();
        }
    });
    return TaskCollection;
});

mark_complete メソッドが実行されると、モデルがコンソールに記録されますが、この " function (){ parent.apply(this, arguments); }"がログに記録され、" " と表示されfunction (){ parent.apply(this, arguments); } has no method 'save'ます。コレクションがそのメソッドにアクセスできるように、モデルがインスタンス化されるはずだと推測していますが、何が問題なのですか?

4

1 に答える 1

2

プロパティは、モデルをコレクションに追加するときに使用するmodel単なるコンストラクターです。Collectionコレクションにデータを入力しようとするときに、あなたの人生を楽にすることを目的としています。Taskにモデルを追加するときに常にコンストラクターを呼び出す代わりにTaskCollection、JavaScript オブジェクトを入力するだけで、同じことが行われます。

したがって、プロパティを設定せずにモデルを挿入する場合、コードは次のようになります。modelTaskCollection

taskCollection.add(new Task({ 
    name: "Get Milk",
    description: "We're out of milk. There's a sale going on at the local supermarket." 
}));

// If you wanted to just input just the JSON object without calling the
// constructor, then you can't.

プロパティ設定した場合、コードは次のようになります。model

taskCollection.add({
    name: "Get Milk",
    description: "We're out of milk. There's a sale going on at the local supermarket." 
});

ご覧のとおり、Taskコンストラクターを呼び出す必要はありません。のインスタンスがTaskCollectionそれを呼び出します。

これが、 のインスタンスが初期化されたバージョンではなく、の実際のコンストラクターに設定されたプロパティTaskCollectionのみを持つ理由です。modelTask

于 2012-07-21T16:37:15.340 に答える