是否可以在 Angular 中使用 JSON Schema faker 作为第三方依赖项。我尝试使用对 Angular 的依赖注入,但是在提供程序中我无法导入 jsonSchemaFaker。
角.json
"scripts": [
"./node_modules/json-schema-faker/dist/json-schema-faker.bundle.min.js"
]
jsonSchemaFaker.service.ts
import { InjectionToken } from '@angular/core';
export const JSF_Token = new InjectionToken ('jsonSchemaFaker');
app.module.ts
providers: [
{ provide: JSF_Token, useValue: jsf }
]
...
declare let jsf: any;
这就是我试图在我的 Angular 应用程序中注入 json schema faker 作为依赖项。我得到了 .. Uncaught ReferenceError: jsf is not defined