私は2つのクラスを取得しました。authenticationRoutes.ts および authenticationController.ts。authenticationRoutes では、「authenticationController.test」を呼び出しています。「authenticationController.test」メソッドは「authenticationController.generateAccessAuthToken」メソッドを呼び出します。これを行うたびに、次のエラーが発生します: Unhandled reject TypeError: Cannot read property 'generateAccessAuthToken' of undefined
authenticationRoutes.ts
import { authenticationController } from '../controllers/authenticationController';
//TEST ROUTE
this.router.get('/users', authenticationController.test);
authenticationController.ts
public test(req: Request, res: Response) {
dbSequelize().User.findAll({
where: {
id: '0'
},
attributes: ['id']
}).then((user: UserInstance[]) => {
this.generateAccessAuthToken('0').then((response: any) => {
console.log(response);
res.send(response);
});
})
}
generateAccessAuthToken(_id: any) {
return new Promise(async (resolve, reject) => {
await jwt.sign({ id: _id }, SECRET_KEY as string, function (err: Error, token: any) {
if (err) {
reject(err);
} else {
resolve(token);
}
})
})
}
エラーを受け取ることなく、説明したことを実行できるようにしたいです。