Giter VIP home page Giter VIP logo

promise-error-handle's Introduction

promise-error-handle

local error handle for chained promises.

sample code.

function getData() {
  console.log('start getData');
  return new Promise((resolve, reject) => {
//      setTimeout(() => resolve('getData')); 
    setTimeout(() => reject('getData')); 
  });
}

function getMoreData(data) {
  console.log('getMoreData: previous ' + data);
  return new Promise((resolve, reject) => {
     setTimeout(() => resolve('getMoreData')); 
//     setTimeout(() => reject('getMoreData')); 
  });
}

function getEvenMoreData(data) {
  console.log('getEvenMoreData: previous ' + data);
  return new Promise((resolve, reject) => {
     console.log('getEvenMoreData promise is evaludated');
     setTimeout(() => resolve('getEvenMoreData')); 
  });
}

getData()
.then(getMoreData, err => { console.log('getData hit error'); return false; })
// .then(getMoreData)
// .then(getEvenMoreData, err => console.log('getMoreData hit error'))
.then(getEvenMoreData)
.then(m => console.log('data from getEvenMoreData: ', + m))
.catch(e => console.log('final catch error: ' + e))

/* output
"start getData"
"getData hit error"
"getEvenMoreData: previous false"
"getEvenMoreData promise is evaludated"
"data from getEvenMoreData: "
NaN
*/

As sample above, getData got error and its then method provided a local error handler function. At this case, the final catch won't be executed, and the chain is not been stopped, the getMoreData is skip obvisously as exepected, but however, the getEvenMoreData is executed with data from getData's error handle function. In my opinion it's weird, just skip all the following then should be more intuitive.

promise-error-handle's People

Contributors

geekchow avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.