91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

angular4自定義組件的示例分析

發布時間:2021-07-27 14:55:50 來源:億速云 閱讀:99 作者:小新 欄目:web開發

這篇文章主要為大家展示了“angular4自定義組件的示例分析”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“angular4自定義組件的示例分析”這篇文章吧。

在 Angular 中,我們可以使用 {{}} 插值語法實現數據綁定。

新建組件

$ ng generate component simple-form --inline-template --inline-style
# Or
$ ng g c simple-form -it -is # 表示新建組件,該組件使用內聯模板和內聯樣式
//會自動為simple-form生成simple-form.component.ts文件,文件中的selector為:app-simple-form,自動添加了app-前綴

輸出:

installing component
 create src/app/simple-form/simple-form.component.spec.ts // 用于單元測試
 create src/app/simple-form/simple-form.component.ts // 新建的組件
 update src/app/app.module.ts //Angular CLI 會自動更新 app.module.ts 文件。把新建的組件添加到 NgModule 的 declarations

數組中

app.module.ts更新后:

@NgModule({
 declarations: [
  AppComponent,
  SimpleFormComponent
 ],
 ...
})
export class AppModule { }

創建 UserComponent 組件

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

@Component({ //Component 裝飾器來定義組件的元信息
 selector: 'sl-user',
 template: `
  <h3>大家好,我是{{name}}</h3>
  <p>我來自<strong>{{address.province}}</strong>省,
   <strong>{{address.city}}</strong>市
  </p>
   <p>{{address | json}}</p>//Angular 內置的 json 管道,來顯示對象信息
`, }) 

//定義組件類

export class UserComponent { 
  name = 'name'; 
  address = { province: 'province', city: 'city' } 
}


//使用構造函數初始化數據
export class UserComponent {
  name: string;
  address: any;
  constructor() {
    this.name = 'name';
    this.address = {
      province: 'province',
      city: 'city'
    }
  }
}

//接口使用
interface Address {
  province: string;
  city: string;
}
export class UserComponent {
  name: string;
  address: Address;
  constructor(){
    this.name = 'name';
    this.address = {
      province: 'province',
      city: 'city'
    }
  }
}

定義數據接口( TypeScript 中的接口是一個非常靈活的概念,除了可用于對類的一部分行為進行抽象以外,也常用于對「對象的形狀(Shape)」進行描述。)

interface Person {
 name: string;
 age: number;
}

let semlinker: Person = {
 name: 'semlinker',
 age: 31
};

聲明 UserComponent 組件

// ...
import { UserComponent } from './user.component';//載入
@NgModule({
 imports:   [ BrowserModule ],
 declarations: [ AppComponent, UserComponent],//聲明
 bootstrap:  [ AppComponent ]
})
export class AppModule { }

在AppComponent中使用 UserComponent 組件

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

@Component({
 selector: 'my-app',
 template: `
  <sl-user></sl-user> //UserComponent 的 selector
 `,
})
export class AppComponent {}

以上是“angular4自定義組件的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

会理县| 平顺县| 秦安县| 封丘县| 米易县| 女性| 班玛县| 延川县| 洛南县| 巧家县| 泸定县| 莱西市| 淳化县| 青冈县| 开平市| 师宗县| 大连市| 古田县| 新泰市| 莒南县| 枝江市| 余江县| 凤山县| 湖南省| 桂林市| 黄山市| 扬中市| 门头沟区| 宝坻区| 石嘴山市| 拉孜县| 桐梓县| 浦县| 乳源| 沂水县| 青铜峡市| 玉山县| 恭城| 潍坊市| 扶绥县| 永宁县|