js使用generator函数同步执行ajax任务

前端之家收集整理的这篇文章主要介绍了js使用generator函数同步执行ajax任务前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例为大家分享了js使用generator函数同步执行ajax任务的具体代码,供大家参考,具体内容如下

response.text()) .then(text => { console.log(url); console.log(text); callback(text); }) .catch((e) => console.log(e)); }

var iterator = null;
function getData(src){
request(src,function(response){
iterator.next(JSON.parse(response));
})
}

function getTpl(src){
request(src,function(response){
iterator.next(response);
});
}

// 同步任务
function render(data,tpl){
for(var i in data) {
tpl = tpl.replace("${"+i+"}",data[i]);
}
return tpl;
}

// 主逻辑
var getArticles = function* (src){
console.log('begin')
var data = yield getData(src)
var tpl = yield getTpl(data.tpl)
var res = render(data,tpl)
console.log(res)
}

iterator = getArticles('data.json')
// 开始执行
iterator.next()
// 异步任务模型

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/ajax/36642.html

猜你在找的Ajax相关文章