js使用generator函数同步执行ajax任务
本文实例为大家分享了js使用generator函数同步执行ajax任务的具体代码,供大家参考,具体内容如下
function request(url, callback) {
fetch(url, {mode: 'cors', credentials: 'include', headers: new Headers({ 'X-Requested-With': 'XMLHttpRequest' })})
.then(response => 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()
// 异步任务模型 相关推荐
如果是get则如果有参数会直接跟在地址之后。如果是post请求,向服务器发送POST请求由于解析机制的原因,需要进行特别的处理。因为POST请求和Web表单提交是不同的,需要使用XHR来模仿表单提交。
李永毅 2019-12-26
DreamPig 2019-06-28
maidou0 2013-12-20
homehttp 2013-04-27
AJAXBloger 2012-07-06
chongxiaocheng 2011-08-02
daydream000 2017-12-21