Coder Social home page Coder Social logo

Response status code about kakapo.js HOT 5 CLOSED

SAbadi avatar SAbadi commented on June 14, 2024
Response status code

from kakapo.js.

Comments (5)

zzarcon avatar zzarcon commented on June 14, 2024

Hi @SAbadi, thanks for the issue, have you tried this?

import { Server, Response, Router } from 'kakapo';

const server = new Server();
const router = new Router();

router.get('/users', request => {
  const code = 400;
  const body = {};
  const headers = {};

  return new Response(code, body, headers);
});

server.use(router);

Basically you need to use the Kakapo Response class, you can take a look into the docs in here http://devlucky.github.io/kakapo-js#response

Please let me know if works for you

from kakapo.js.

SAbadi avatar SAbadi commented on June 14, 2024

Hi @zzarcon ,

Thanks for your prompt response.

Yes, I have tried that approach as well, but unfortunately it doesn't work. I am using Kakapo version 0.2.0.

You can find the issue in xhrInterceptor.js line 53 and 56.

So basically whatever route handler returns gets converted to string using JSON.stringify and it will be available only as responseText.

And more importantly in line 56 response's status is set explicitly to 200.

from kakapo.js.

zzarcon avatar zzarcon commented on June 14, 2024

OMG! You are totally right, I actually thought we had test for such case (which is pretty basic) sorry for pointing you to the docs instead. I'll fix it asap.

Thanks!!

from kakapo.js.

zzarcon avatar zzarcon commented on June 14, 2024

@SAbadi please let me know if the fix works is working for you

from kakapo.js.

SAbadi avatar SAbadi commented on June 14, 2024

Hi @zzarcon

Yes, it is working well now. Thanks for the quick fix.

from kakapo.js.

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.