最近项目中用到knockoutjs,在网上搜到了一个做分页模板的文章 http://www.cnblogs.com/zemin-wang/p/dotNet-Javascript-Knockout.html?utm_source=tuicool&utm_medium=referral#commentform
apply 和 call 这里不太理解,求大神指导下
paginationViewModel.apply(self, [10, function (page, pageHandler) {
debugger
self.loading(true);
$.ajax({
url: "dataHandler.ashx",
cache: false,
data: {
pageIndex: page,
pageSize: self.pageSize
},
success: function (data) {
if (typeof data === "string") {
data = $.parseJSON(data);
}
pageHandler.call(self, data);
self.items(data.list);
self.loading(false);
}
});
}]);
self.goToPage = function (page) {
if (typeof self.goToPageHandler == "function") {
self.goToPageHandler.call(self, page - 1, function (data) {
debugger
self.pageCount(Math.ceil(data.count / self.pageSize));
self.currentPage(page);
self.jumpPage(null);
self.caculatePages();
self.total(data.count);
});
};
};
ps:如果能有个图来表示this指针的指向再好不过了
fn.call(this, a, b, c);
相当于this.fn(a, b, c)
(相当于仿佛 fn 被赋值到了 this 上,当然实际上是没有的)fn.apply(this, [a, b, c])
相当于fn.call(this, a, b, c)
apply 的意义就在于,可以动态地对参数进行修改
http://stackoverflow.com/questions/1986896/what-is-the-difference-between-call-and-apply
https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Function/apply
主要用于切换上下文
其实就是静态调用,self::send()