Giter Site home page Giter Site logo

I can't catch the error ~ about compose HOT 6 CLOSED

koajs avatar koajs commented on May 7, 2024
I can't catch the error ~

from compose.

Comments (6)

danwkennedy avatar danwkennedy commented on May 7, 2024

You have to either await or return next(). In this case it looks like you should return since middleware don't do anything after calling next

from compose.

cavacn avatar cavacn commented on May 7, 2024

OK , I change my example code ~

const compose = require('koa-compose');

const middleware = [
    function (ctx, next) {
        // ctx.step1 = true;
        ctx.steps = [];
        ctx.steps.push(1);
        return next();
    },
    function (ctx, next) {
        next();
        ctx.steps.push(4);
    },
    function (ctx, next) {
        next();
        a = b;
        ctx.steps.push(3);
    },
    function (ctx, next) {
        next();
        ctx.steps.push(2);
    }
];

const ctx = {};

compose(middleware)(ctx).then(() => {
    console.log('success', ctx);
}).catch((err) => {
    console.log('err', err.stack);
});

If I either return next(), it seems Unreasonable~

from compose.

danwkennedy avatar danwkennedy commented on May 7, 2024

No exception is going to be thrown with the code above as far as I can tell so the catch at the end won't be called.

However, the middleware need to return next() for the execution to go down the stack. Middleware are work like a chain of promises. A call to next() returns a promise that will resolve when the execution has gone down the stack and back up to the given middleware's position again. If you don't return the promise, the stack is traversed in reverse from that point and won't wait for the rest of the chain.

from compose.

cavacn avatar cavacn commented on May 7, 2024

Yes , I try to change compose core code~ like this

return function (context, next) {
    let index = -1
    return dispatch(0)
    function dispatch (i) {
      if (i <= index) return Promise.reject(new Error('next() called multiple times'))
      index = i
      let fn = middleware[i]
      if (i === middleware.length) fn = next
      if (!fn) return Promise.resolve()
      try {
        // return Promise.resolve(fn(context, function next () {
          // return dispatch(i + 1)
        // }))
	return new Promise((resolve,reject)=>{
	  fn(context,()=>{resolve(dispatch(i+1));});
	})
      } catch (err) {
        return Promise.reject(err)
      }
    }
  }

I try to keep the promise chain, but can't pass npm test

from compose.

fl0w avatar fl0w commented on May 7, 2024

@cavacn You need to return promise in all middleware calling next(). That's the design of it. Not sure why you're working against it? What are you trying to solve?

from compose.

cavacn avatar cavacn commented on May 7, 2024

@fl0w @danwkennedy thanks, Ok , I got it ~

from compose.

Related Issues (20)

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.