我想在刷新函数中调用 posts() 。这是我的代码。
var TIMELINE = TIMELINE || (function (){
/*** private ***/
var _args = {};
var self = this;
return {
init : function(Args){
_args = Args;
}, // init
posts : function(data) {
alert('posts called');
}, // posts
unsetMarkers : function() {
alert('unsetMarkers called');
}, // unsetMarkers
refresh : function(){
self.posts;
}
};
}());
问题出在这一行self.posts;
我也试过self.posts({'data':'success','another':'thing'});
如何在刷新中使用帖子?