使用 NestJS + Typeorm 的无服务器 Lambda
Serverless Lambda with NestJS + Typeorm
我尝试使用 NestJS + Typeorm 运行 无服务器离线。我第一次打电话获取所有用户时,它起作用了。但是第二次,我得到了一个错误:
ERROR [ExceptionHandler] No repository for "User" was found. Looks like this entity is not registered in current "default" connection?
我添加了 keepConnectionAlive: true
但它不起作用。请帮帮我,谢谢!
尝试 --allowCache
选项。
我遇到了和你完全一样的问题
这个命令对我有用。
npx sls offline --allowCache start
我尝试使用 NestJS + Typeorm 运行 无服务器离线。我第一次打电话获取所有用户时,它起作用了。但是第二次,我得到了一个错误:
ERROR [ExceptionHandler] No repository for "User" was found. Looks like this entity is not registered in current "default" connection?
我添加了 keepConnectionAlive: true
但它不起作用。请帮帮我,谢谢!
尝试 --allowCache
选项。
我遇到了和你完全一样的问题
这个命令对我有用。
npx sls offline --allowCache start