PapaParse的API具有一个异步回调函数。我想知道如何将其转换为 promise 。例如:

Papa.parse(fileInput.files[0], {
    complete: function(results) {
        console.log(results);
    }
});

任何帮助,将不胜感激!

最佳答案

基本模式是

Papa.parsePromise = function(file) {
  return new Promise(function(complete, error) {
    Papa.parse(file, {complete, error});
  });
};

然后
Papa.parsePromise(fileInput.files[0]) .
  then(function(results) { console.log(results); });

10-06 07:59