Ngx-Bootstrap - 环境设置


在本章中,您将详细了解如何在本地计算机上设置 ngx-bootstrap 的工作环境。由于 ngx-bootstrap 主要用于 Angular 项目,因此请确保您的系统上安装了Node.jsnpmAngular

创建一个有角度的项目

首先使用以下命令创建一个 Angular 项目来测试 ngx-bootstrap 组件。

ng new ngxbootstrap

它将创建一个名为 ngxbootstrap 的 Angular 项目。

添加 ngx-bootstrap 作为依赖项

您可以使用以下命令在新创建的项目中安装 ngx-bootstrap -

npm install ngx-bootstrap

成功安装 ngx-bootstrap 后,您可以观察到以下输出 -

+ ngx-bootstrap@5.6.1
added 1 package from 1 contributor and audited 1454 packages in 16.743s

现在,要测试 bootstrap 是否可以在 Node.js 上正常工作,请使用以下命令创建测试组件 -

ng g component test
CREATE src/app/test/test.component.html (19 bytes)
CREATE src/app/test/test.component.spec.ts (614 bytes)
CREATE src/app/test/test.component.ts (267 bytes)
CREATE src/app/test/test.component.css (0 bytes)
UPDATE src/app/app.module.ts (388 bytes)

清除app.component.html的内容并更新以下内容。

应用程序组件.html

<app-test></app-test>

更新 app.module.ts 的内容以包含 ngx-bootstrap Accordion 模块。我们将在后续章节中添加其他模块。更新以下内容。

应用程序模块.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { TestComponent } from './test/test.component';
import { AccordionModule } from 'ngx-bootstrap/accordion'
@NgModule({
   declarations: [
      AppComponent,
      TestComponent
   ],
   imports: [
      BrowserAnimationsModule,
      BrowserModule,
      AccordionModule.forRoot()
   ],
   providers: [],
   bootstrap: [AppComponent]
})
export class AppModule { }

更新index.html 的内容以包含bootstrap.css。更新以下内容。

索引.html

<!doctype html>
<html lang="en">
   <head>
      <meta charset="utf-8">
      <title>Ngxbootstrap</title>
      <base href="/">
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <link rel="icon" type="image/x-icon" href="favicon.ico">
      <link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">
   </head>
   <body>
      <app-root></app-root>
   </body>
</html>

在下一章中,我们将更新测试组件以使用 ngx-bootstrap 组件。