Angular module wraps abp javascript API as angular services.
Перейти к файлу
İsmail ÇAĞDAŞ 4acd3b6cf1 Update packages and increase version number 2024-07-23 13:50:32 +03:00
projects/abp-ng2-module
.editorconfig
.gitignore
README.MD
angular.json
package.json
tsconfig.json
tslint.json
typings.d.ts
yarn.lock

README.MD

Important

Issues of this repository are tracked on https://github.com/aspnetboilerplate/aspnetboilerplate. Please create your issues on https://github.com/aspnetboilerplate/aspnetboilerplate/issues.

abp-ng2-module

Installation

To install this library, run:

$ npm install abp-ng2-module --save

Development

To generate all *.js, *.js.map and *.d.ts files:

$ ng build abp-ng2-module --prod

AbpHttpInterceptor

In order to use AbpHttpInterceptor in your module, first import it and AbpHttpInterceptor into your module like below;

import { AbpModule } from '@abp/abp.module';
import { AbpHttpInterceptor } from '@abp/abpHttpInterceptor';
import { HTTP_INTERCEPTORS } from '@angular/common/http';

then, add it to your module providers like below;

imports: [
    ///other imports
],
providers: [
    ///other providers
    { provide: HTTP_INTERCEPTORS, useClass: AbpHttpInterceptor, multi: true }
]

License

MIT