Argument of type '(res: Response<any, Record<string, any>>, next: NextFunction) => Promise<void>' is not assignable to parameter of type

huangapple go评论115阅读模式
英文:

Argument of type '(res: Response<any, Record<string, any>>, next: NextFunction) => Promise<void>' is not assignable to parameter of type

问题

以下是翻译好的部分:

  1. 我有以下函数来从`mysql`中读取所有`users`
  2. static async readAll(res: Response, next: NextFunction) {
  3. let user: IUser;
  4. let users: [IUser];
  5. await pool.query<IUser[]>("SELECT * FROM users")
  6. .then((result) => {
  7. const results = result as [RowDataPacket, FieldPacket[]];
  8. for (let i = 0; i < results.length; i++) users[i] = results[0].value;
  9. res.send(users);
  10. })
  11. .catch(err => { console.log(err); next(); })
  12. }

以下是userRouter文件:

  1. router
  2. .route("/")
  3. .get(User.readAll);

但它给我以下错误:

  1. 没有重载匹配此调用。
  2. 最后一个重载提供了以下错误。
  3. 类型为'(res: Response<any, Record<string, any>>, next: NextFunction) => Promise<void>'的参数不可分配给类型'RequestHandlerParams<ParamsDictionary, any, any, ParsedQs, Record<string, any>>'
  4. 类型'(res: Response<any, Record<string, any>>, next: NextFunction) => Promise<void>'不可分配给类型'RequestHandler<ParamsDictionary, any, any, ParsedQs, Record<string, any>>'
  5. 参数'res''req'的类型不兼容。
  6. 类型'Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>'缺少类型'Response<any, Record<string, any>>'的以下属性:statussendStatuslinkssend,以及还有55个属性。

这是user接口:

  1. export interface IUser extends RowDataPacket {
  2. id?: number
  3. email: string
  4. password: string
  5. admin: boolean
  6. created_at: Date
  7. }

还有数据库配置:

  1. const pool = mysql.createPool(
  2. {
  3. host: (process.env.DB_HOST),
  4. user: (process.env.DB_USER),
  5. password: (process.env.DB_PASSWORD),
  6. database: (process.env.DB_NAME),
  7. waitForConnections: true,
  8. connectionLimit: 10,
  9. queueLimit: 0
  10. }).promise();
英文:

I have the following function to read all the users from the mysql:

  1. static async readAll(res:Response , next: NextFunction){
  2. let user : IUser;
  3. let users : [IUser];
  4. await pool.query&lt;IUser[]&gt;(&quot;SELECT * FROM users&quot;)
  5. .then((result) =&gt; {
  6. const results = result as [RowDataPacket, FieldPacket[]];
  7. for (let i=0; i &lt; results.length ; i++) users[i] = results[0].value;
  8. res.send(users);
  9. })
  10. .catch(err =&gt; {console.log(err); next();})
  11. }

And the following is the userRouter file:

  1. router
  2. .route(&quot;/&quot;)
  3. .get(User.readAll);

But it gives me the following error:

  1. No overload matches this call.
  2. The last overload gave the following error.
  3. Argument of type &#39;(res: Response&lt;any, Record&lt;string, any&gt;&gt;, next: NextFunction) =&gt; Promise&lt;void&gt;&#39; is not assignable to parameter of type &#39;RequestHandlerParams&lt;ParamsDictionary, any, any, ParsedQs, Record&lt;string, any&gt;&gt;&#39;.
  4. Type &#39;(res: Response&lt;any, Record&lt;string, any&gt;&gt;, next: NextFunction) =&gt; Promise&lt;void&gt;&#39; is not assignable to type &#39;RequestHandler&lt;ParamsDictionary, any, any, ParsedQs, Record&lt;string, any&gt;&gt;&#39;.
  5. Types of parameters &#39;res&#39; and &#39;req&#39; are incompatible.
  6. Type &#39;Request&lt;ParamsDictionary, any, any, ParsedQs, Record&lt;string, any&gt;&gt;&#39; is missing the following properties from type &#39;Response&lt;any, Record&lt;string, any&gt;&gt;&#39;: status, sendStatus, links, send, and 55 more.

This is the user interface:

  1. export interface IUser extends RowDataPacket {
  2. id?: number
  3. email: string
  4. password: string
  5. admin: boolean
  6. created_at: Date
  7. }

Also the database config:

  1. const pool = mysql.createPool(
  2. {
  3. host : (process.env.DB_HOST),
  4. user : (process.env.DB_USER),
  5. password: (process.env.DB_PASSWORD ),
  6. database: (process.env.DB_NAME ),
  7. waitForConnections: true,
  8. connectionLimit: 10,
  9. queueLimit: 0
  10. }).promise();

答案1

得分: 1

中间件路由函数的参数顺序是 requestresponsenext

尝试使用:

  1. static async readAll(req: Request, res: Response, next: NextFunction) { ... }
英文:

The parameter order for a middleware route function is request, response, next.

Try with:

  1. static async readAll(req: Request, res: Response, next: NextFunction) { ... }

huangapple
  • 本文由 发表于 2023年1月5日 15:05:19
  • 转载请务必保留本文链接:https://go.coder-hub.com/75014869.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定