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

Posted 镜镜哒

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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()
// 异步任务模型

以上是关于js使用generator函数同步执行ajax任务的主要内容,如果未能解决你的问题,请参考以下文章

ES6中generator(生成器)函数的应用

Generator 函数的含义与用法

js事件循环机制

js函数可以同步执行么

js-ES6学习笔记-Generator函数的异步应用

js找到控件后再下一步操作