📜  什么是Angular 10中的APP_BASE_HREF?

📅  最后修改于: 2021-05-13 20:18:18             🧑  作者: Mango

在本文中,我们将了解Angular 10中的APP_BASE_HREF是什么以及如何使用它。

APP_BASE_HREF返回当前页面的基本href的预定义DI令牌。 APP_BASE_HREF是应保留的URL前缀。

句法:

provide: APP_BASE_HREF, useValue: '/gfgapp'

方法:

  • 在app.module.ts和APP_BASE_HREF中具有useValue的提供程序中。
  • 在app.component.ts中,将APP_BASE_HREF存储到任何变量中并使用它。

范例1:

app.module.ts

Javascript
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
  
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import {APP_BASE_HREF} from '@angular/common';
  
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule
  ],
  providers: [ {provide: APP_BASE_HREF, useValue: '/gfgapp'} ],
  bootstrap: [AppComponent]
})
export class AppModule { }


Javascript
import { Component, Inject } from '@angular/core';
import {APP_BASE_HREF} from '@angular/common';
  
@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  title = 'demo1';
  constructor(@Inject(APP_BASE_HREF) private baseHref:string) {
    var a = this.baseHref;
    console.log(a, " is base HREF")
  }
    
}


app.component.ts

Java脚本

import { Component, Inject } from '@angular/core';
import {APP_BASE_HREF} from '@angular/common';
  
@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  title = 'demo1';
  constructor(@Inject(APP_BASE_HREF) private baseHref:string) {
    var a = this.baseHref;
    console.log(a, " is base HREF")
  }
    
}

输出: