最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Typescript: Property 'decoded' does not exists on type Request - Stack Overflow

programmeradmin1浏览0评论

I have this code in javascript:

if (token) {

    // verifies secret and checks exp
    jwt.verify(token, Config.Secret, function(err, decoded) {      
      if (err) {
        return res.json({ success: false, message: 'Failed to authenticate token.' });    
      } else {
        // if everything is good, save to request for use in other routes
        req.decoded = decoded;    
        next();
      }
    });

  } else {

    // if there is no token
    // return an error
    return res.status(403).send({ 
        success: false, 
        message: 'No token provided.' 
    });

  }

Want to rewrite it to typescript but getting an error Property decoded does not exists on type Request.

Any ideas how to solve that?

I have this code in javascript:

if (token) {

    // verifies secret and checks exp
    jwt.verify(token, Config.Secret, function(err, decoded) {      
      if (err) {
        return res.json({ success: false, message: 'Failed to authenticate token.' });    
      } else {
        // if everything is good, save to request for use in other routes
        req.decoded = decoded;    
        next();
      }
    });

  } else {

    // if there is no token
    // return an error
    return res.status(403).send({ 
        success: false, 
        message: 'No token provided.' 
    });

  }

Want to rewrite it to typescript but getting an error Property decoded does not exists on type Request.

Any ideas how to solve that?

Share Improve this question asked Feb 7, 2016 at 11:35 SerginoSergino 10.8k37 gold badges107 silver badges181 bronze badges 4
  • Do you have a type definition for Request? – Vadim Macagon Commented Feb 7, 2016 at 11:44
  • @VadimMacagon yes it is ing from express import {Request, Response} from "express"; – Sergino Commented Feb 7, 2016 at 11:46
  • I see no decoded field in express.d.ts, is it a field you've added yourself? – Vadim Macagon Commented Feb 7, 2016 at 11:53
  • @VadimMacagon actually yes it is custom field. Oh what is the best way to do then? – Sergino Commented Feb 7, 2016 at 11:57
Add a ment  | 

6 Answers 6

Reset to default 6

If you don't want to make a new class extending Request you may access request as an object like:

req['decoded'] = decoded;

If it stills throws at you you may have to cast req as an object (typescript):

(<Object>req)['decoded'] = decoded;

You may even cast req to type any and access decoded as property (typescript):

(<any>req).decoded = decoded;

You will need to use declaration merging to add type definitions for custom Request fields. To do so create a .d.ts file that looks like this:

declare module Express {
  export interface Request {
    decoded: string;
    // etc.
  }
}

And add it to your pilation context so the piler merges the type definitions with the ones in express.d.ts.

I would not merge interfaces from modules with the same name even if it's possible. I would rather make a new custom interface, which you can even declare in the very same file you are using it. (otherwise, just export it)

import {Request, Response} from "express";

interface CustomRequest extends Request {
    decoded: string;
}

This is much more cleaner and moreover it's closer to OOP.

That error mean that the original Request type from express don't any field with that name.

You have two options to solve this problem, the first one as Vadim Macagon pointed out, you can create a declaration module file and add your custom field, doing so that field will be avaliable on every Request.

declare module Express {
  export interface Request {
    decoded: string;
    // etc.
  }
}

Option two you can create a custom interface that extends the original Request and add your decoded field.

export default interface ICustomRequest extends Request {
  token: string;
}

and then in your code you

app.post('/', function (req: ICustomRequest, res) {
  req.decoded = decoded; // No errors here
});

The first solution you're "adding" the custom field to the Request, and the second you're add your field and extending from Request.

In your case I would use the first solution to avoid writing ICustomRequest (or whatever name you choose) every time that you have to use that decoded field from your request, the files .d.ts don't need to be imported in your code so you can just create the file and it's done.

my 'decoded' was just user_id string and i solved this problem like this:

req.body.decoded = decoded;    
next();

I recently had the same issue, I followed the solution in the previous ments and this repo and I still had the same issue. After doing more digging it seems like it's a bug with ts-node.

To solve this you need to run your server with a --files flag

So if you normally run your server ts-node ./src/server.ts or nodemon ./src/server.ts Change it to ts-node --files ./src/server.ts or nodemon --files ./src/server.ts

After that, I was able to get rid of both the VScode errors and errors while starting the server.

发布评论

评论列表(0)

  1. 暂无评论