我有一个接受回调函数的函数,我可以在其中将数据传回。这可以转换为延迟对象以便更好地练习吗?
这是我得到的:
var chapters;
var getChapters = function (fnLoad) {
//CACHE DATA IF APPLICABLE
if (!chapters) {
//CALL JSON DATA VIA AJAX
$.getJSON('/chapters.txt')
.done(function (json) {
//STORE DATA IN LOCAL STORAGE
chapters = Lawnchair(function () {
this.save(json, function (data) {
//CALL CALLBACK ON DATA
fnLoad(data);
});
});
});
} else {
//RETURN ALREADY CREATED LOCAL STORAGE
chapters.all(function (data) {
//CALL CALLBACK ON DATA
fnLoad(data);
});
}
};
然后我只是像这样使用它:
this.getChapters(function (data) {
console.log(data);
});
在保持缓存方法的同时,如何像承诺一样使用它?
this.getChapters().done(function (data) {
console.log(data);
});