Open Closed

I have copied the (File Management Abp) into my project as a module everything works fine but when adding the upload service I got an error #7321


User avatar
0
info@tecsolutiongroup.com created
  • ABP Framework version: 6.0.0

  • UI Type: Angular

  • Database System: EF Core (SQL Server)

  • Tiered (for MVC) or Auth Server Separated (for Angular): yes

  • Exception message and full stack trace: NullInjectorError: NullInjectorError: No provider for InjectionToken FILE_MANAGEMENT_XSRF_HEADER_NAME!

  • Steps to reproduce the issue: Which I did provide it to my module as : export class FileManagementModule { static forChild( options: FileManagementConfigOptions = {} ): ModuleWithProviders<FileManagementModule> { return { ngModule: FileManagementModule, providers: [ { provide: FILE_MANAGEMENT_ENTITY_ACTION_CONTRIBUTORS, useValue: options.entityActionContributors, }, { provide: FILE_MANAGEMENT_TOOLBAR_ACTION_CONTRIBUTORS, useValue: options.toolbarActionContributors, }, { provide: FILE_MANAGEMENT_ENTITY_PROP_CONTRIBUTORS, useValue: options.entityPropContributors, }, { provide: FILE_MANAGEMENT_XSRF_HEADER_NAME, useValue: options.xsrfHeaderName || 'RequestVerificationToken', },
    FileManagementInitializer, ], };

    } static forLazy( options: FileManagementConfigOptions = {} ): NgModuleFactory<FileManagementModule> { return new LazyModuleFactory(FileManagementModule.forChild(options)); } } “

Upload service: “ constructor( private localization: LocalizationService, private fileService: FileDescriptorService, private confirmation: ConfirmationService, private updateStream: UpdateStreamService, private apiInterceptor: ApiInterceptor, private environmentService: EnvironmentService, private httpXsrfToken: HttpXsrfTokenExtractor, // private headerName: FILE_MANAGEMENT_XSRF_HEADER_NAME, @Inject(FILE_MANAGEMENT_XSRF_HEADER_NAME) private headerName: string ) {}

initUppy({ trigger }) { const headers = this.apiInterceptor.getAdditionalHeaders(); headers[this.headerName] = this.httpXsrfToken.getToken(); … “


2 Answer(s)
  • User Avatar
    0
    enisn created
    Support Team .NET Developer

    Can you share which error you got?

  • User Avatar
    0
    info@tecsolutiongroup.com created

    The error that appears to us

Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11