码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2018-07-26 18:41:26      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:tar   keyword   ret   cal   json   comment   ade   generator   end   

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()
// 异步任务模型

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

标签:tar   keyword   ret   cal   json   comment   ade   generator   end   

原文地址:https://www.cnblogs.com/zj911005/p/9372730.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!