关于函数返回值的获取
fetch: function(cb){ return this .find({}) .sort('meta.updateAt') .exec(cb) }
Movie.fetch(function(err,movies){})
请问这里的function(err,movies)是怎么识别movies就是fetch返回的对象的呢?
fetch: function(cb){ return this .find({}) .sort('meta.updateAt') .exec(cb) }
Movie.fetch(function(err,movies){})
请问这里的function(err,movies)是怎么识别movies就是fetch返回的对象的呢?
2016-05-26
举报