溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Angular怎么構(gòu)建組件

發(fā)布時(shí)間:2021-08-12 11:53:26 來源:億速云 閱讀:124 作者:chen 欄目:web開發(fā)

本篇內(nèi)容介紹了“Angular怎么構(gòu)建組件”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

Angular怎么構(gòu)建組件?本篇文章給大家介紹一下Angular創(chuàng)建項(xiàng)目的方法,Angular創(chuàng)建組件的三種方式。

一、angular 與angularjs的區(qū)別是什么?

  • 命名變化,Angular2 以后官方命名為Angular, 2.0 以前的版本稱為AngualrJS。

  • 1.x 的使用方式是引入AngularJS 的js 文件到網(wǎng)頁,2.0 之后就完全不同了,兩者的區(qū)別類似Java 和JavaScript。

Angular怎么構(gòu)建組件

二、創(chuàng)建一個(gè)項(xiàng)目

1.安裝全局的 Angular CLI 命令行工具

npm install -g @angular/cli

2.創(chuàng)建項(xiàng)目

ng new angular-tour-of-heroes

注意:node 版本需要在12以上,否則會(huì)提示:“'ng' 不是內(nèi)部或外部命令,也不是可運(yùn)行的程序 或批處理文件?!?/p>

3.跑項(xiàng)目

cd angular-tour-of-heroes
ng serve --open

Angular怎么構(gòu)建組件

三、創(chuàng)建組件的第一種方式:

1.src文件下,新建文件,命名hello-world.component.ts

import { Component } from "@angular/core";

@Component({
    selector: 'hello-world組件',
    // templateUrl: './app.component.html',
    // styleUrls: ["./app.component.scss"]
    template: `<h2>{{text}}</h2>`

})
export class HellowordComponent {
    constructor() {}
    text = "第一個(gè)模板";
}

Angular怎么構(gòu)建組件

2.app.component.html中或app.component.ts中新增組件標(biāo)簽

Angular怎么構(gòu)建組件

// 引入ng核心包和組件
import { Component } from '@angular/core';
@Component({
  selector: 'app-root',//當(dāng)前組件的引用名稱
  template:
    ` 
 <hello-world></hello-world>//x新增組件標(biāo)簽

    `  ,
  // templateUrl: './app.component.html',//組件模板
  styles: ['h2 { color:red}']
  // styleUrls: ['./app.component.scss']//組件的樣式文件

})
export class AppComponent {//組件名稱

}

3.app.module.ts中引入組件,聲明組件

Angular怎么構(gòu)建組件

四、創(chuàng)建組件的第二種方式:

使用cli創(chuàng)建組件

輸入命令:

ng generate component hello-world

Angular怎么構(gòu)建組件

五、創(chuàng)建組件的第三種方式:

1.在vscode下載 Angular Files

Angular怎么構(gòu)建組件

2.在components下面右鍵,則出現(xiàn)下圖

Angular怎么構(gòu)建組件

3.點(diǎn)擊Generater component輸入組件名回車

Angular怎么構(gòu)建組件

4.組件生成

Angular怎么構(gòu)建組件

“Angular怎么構(gòu)建組件”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI