0
exports.definition = {

    config : {
        // table schema and adapter information
    },

    extendModel: function(Model) {      
        _.extend(Model.prototype, {
            // Extend, override or implement the Backbone.Model methods                     
        });
        return Model;
    },

    extendCollection: function(Collection) {        
        _.extend(Collection.prototype, {

        }); // end extend

        return Collection;
    }
}

当我尝试做var model = Alloy.createCollection('model');

alert(appointments.fetch());

我没有得到任何结果。

4

1 回答 1

0

fetch是异步的。因此,它将返回一个承诺,或者您需要设置一个回调:

appointments.fetch().done(function( r ) { console.log(r) });

另外,永远不要用于alert调试;这是没用的。始终打开您的控制台并使用console.log

于 2013-02-22T15:39:27.357 回答