我一直在研究和搜索有关此问题的几天,但是尽管在线发布了各种变体,但仍未找到解决方案。
当我尝试在生产模式下使用 Angular CLI 编译我的应用程序时,我收到以下错误:
静态解析符号值时遇到错误。调用函数“FluffySpoonAuthenticationModule”,不支持函数调用。考虑将函数或 lambda 替换为对导出函数的引用,解析 app.module.ts 中的符号 AppModule,解析 app.module.ts 中的符号 AppModule
这是 的相关部分app.module.ts
。
import { FluffySpoonAuthenticationModule } from '@fluffy-spoon/angular.authentication.jwt';
@NgModule({
imports: [
FluffySpoonAuthenticationModule.forRoot('foo')
]
})
export class AppModule {}
现在,显然在导入部分,我正在调用一个方法。但是由于我需要指定一个动态字符串值作为模块的一部分,我需要能够以某种方式调用一个方法来配置该部分。此外,为什么它可以与其他forRoot
电话而不是我的电话一起使用,对吗?
FluffySpoonAuthenticationModule 的源代码在这里: https ://github.com/ffMathy/FluffySpoon.Angular.Authentication.Jwt/
我正在使用命令ionic cordova build android --prod