前言 Angular 14一項令人興奮的特性就是Angular的獨立組件終於來了。 在Angular 14中, 開發者可以嘗試使用獨立組件開發各種組件,但是值得註意的是Angular獨立組件的API仍然沒有穩定下,將來可能存在一些破壞性更新,所以不推薦在生產環境中使用。 如何創建一個獨立組件 對於已 ...
前言
Angular 14一項令人興奮的特性就是Angular的獨立組件終於來了。
在Angular 14中, 開發者可以嘗試使用獨立組件開發各種組件,但是值得註意的是Angular獨立組件的API仍然沒有穩定下,將來可能存在一些破壞性更新,所以不推薦在生產環境中使用。
如何創建一個獨立組件
對於已有的組件,我們可以在@Component()
中添加standalone: true的標識,然後我們可以在沒有@NgModule()
的情況下直接使用imports
導入其他模塊了。
如果是新建組件,可以使用ng generate component <name> --standalone
的命令,直接創建一個獨立組件, 例如:
ng generate component button-list --standalone
@Component({
selector: 'app-button-list',
standalone: true,
imports: [
CommonModule,
],
templateUrl: './button-list.component.html',
styleUrls: ['./button-list.component.scss']
})
export class ButtonListComponent implements OnInit
在獨立組件中導入已有的模塊
我們可以在imports
中添加已有的模塊,以MatButtonModule
為例:
imports: [
CommonModule,
MatButtonModule,
],
這樣子我們就可以在ButtonListComponent
中使用MatButtonModule
的mat-button
組件了:
<button mat-button>Basic</button>
<button mat-button color="primary">Primary</button>
<button mat-button color="accent">Accent</button>
<button mat-button color="warn">Warn</button>
<button mat-button disabled>Disabled</button>
<a mat-button href="https://damingerdai.github.io" target="_blank">Link</a>
效果圖:
使用獨立組件啟動Angular應用
第一步, 將AppComponent
設置為獨立組件:
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: true,
})
export class AppComponent {
...
}
第二步,將AppModule
的imports中的導入的模塊加入到AppComponent
的imports中,但是有兩個模塊例外: BrowserModule
和BrowserAnimationsModule
。
如果導入的話,可能會導致** BrowserModule
have already been loaded. If you need access to common directives such as NgIf and NgFor, import the CommonModule
instead.**的問題:
第三步,刪除app.module.ts
文件
最後一步, 將main.ts
中的:
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
platformBrowserDynamic().bootstrapModule(AppModule)
.catch(err => console.error(err));
改為:
bootstrapApplication(AppComponent).catch(err => console.error(err));
這樣子我們就實現了使用獨立組件啟動Angular組件了。
為獨立組件配置路由
我這裡分別有三個獨立組件: HomeComponent
, ButtonListComponent
和 ChipListComponent
,
然後在main.ts
中創建ROUTES對象
const ROUTES: Route[] = [
{
path: '',
pathMatch: 'full',
redirectTo: 'home'
},
{
path: 'home',
component: HomeComponent
},
{
path: 'button',
loadComponent: () =>
import('./app/button-list/button-list.component').then(
(mod) => mod.ButtonListComponent
),
},
{
path: 'chip',
loadComponent: () =>
import('./app/chip-list/chip-list.component').then(
(mod) => mod.ChipListComponent
),
},
];
其中ButtonListComponent
和ChipListComponent
使用loadComponent
去實現路由懶載入。
最後在bootstrapApplication
的第二個參數中使用providers
註冊RouterModule
好了。
bootstrapApplication(AppComponent, {
providers: [
importProvidersFrom(RouterModule.forRoot([...ROUTES])),
],
}).catch(err => console.error(err));
效果圖:
配置依賴註入
當我們想要啟動Angular應用的時候,可能需要註入一些值或者服務。 在bootstrapApplication
, 我們可以通過providers
來註冊值或者服務。
比如,我有一個獲取圖片的url,需要註入到PhotoService
中:
bootstrapApplication(AppComponent, {
providers: [
{
provide: 'photoUrl',
useValue: 'https://picsum.photos',
},
{provide: PhotosService, useClass: PhotosService },
importProvidersFrom(RouterModule.forRoot([...ROUTES])),
importProvidersFrom(HttpClientModule)
],
})
PhotoService
代碼如下:
@Injectable()
export class PhotosService {
constructor(
@Inject('photoUrl') private photoUrl: string,
private http: HttpClient
) { }
public getPhotoUrl(i: number): string {
return `${this.photoUrl}/200/300?random=${i}`;
}
}
源代碼
本文所使用的源代碼
線上demo