本文主要介紹了angular2 ng2 @input和@output理解及示例,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟著小編過來看看吧,希望能幫助大家。
angular2 @input和@output理解
#先做個比方,然後奉上程式碼
例如:
<talk-cmp [talk]="someExp" (rate)="eventHandler($event.rating)">
input, [talk]="someExp" 這個標籤可以理解為一個專門的監聽器,監聽父元件傳遞過來的someExp參數,並存入自身元件的talk變;好像是開了個後門,允許且只允許父組件的someExp進入,一旦進入立刻抓進一個叫talk的牢房,然後子組件中就可以通過@Input來定義這個變量talk然後使用它。
output ,(click)="eventHandler($event.rating) 這個意思是, 當子元件的click事件被觸發,就執行父元件的eventHandler函數,並把子元件的參數$event. rating傳遞給父組件的eventHandler函數;就好像,當小孩子一哭(執行click事件),他的母親立刻把他抱在懷裡(執行母親的eventHandler),同時母親獲得了小孩子的一些參數( $event.rating)
1、@input()
父元件father.component.ts 提供資料
import {Component} from "@angular/core"; @Component({ selector: "my-father", templateUrl: "father.html" }) export class FatherComponent { data: Array<Object>; constructor() { this.data = [ { "id": 1, "name": "html" }, { "id": 2, "name": "css" }, { "id": 3, "name": "angular" }, { "id": 4, "name": "ionic" }, { "id": 5, "name": "node" } ] } }
模板檔案father.html
<h1>父组件</h1> // 包含子组件, 并使用属性传递数据过去 <my-child [info]="data"></my-child>
子元件child.component.ts 取得資料
##
import {Component, Input} from "@angular/core"; @Component({ selector: "my-child", templateUrl: "child.html" }) export class ChildComponent { // 使用@Input获取传递过来的数据 @Input() info: Array<Object>; constructor() { } }子元件child.html範本檔案
<ul> <li *ngFor="let item of info"> {{item.name}} </li> </ul>
2、@Output()
子元件three-link.component.ts 1. 引入import {Component, OnInit, Output, EventEmitter} from "@angular/core";2. 定義輸出變數
export class ThreeLinkComponent { province: string; // 输出一下参数 @Output() provinceOut = new EventEmitter(); constructor() { this.province = "陕西"; } }3. 事件出發,發射變數給父元件
provinceChange() { // 选择省份的时候发射省份给父组件 this.provinceOut.emit(this.province); }父元件模板
<!--三级联动组件--> <three-link (provinceOut)="recPro($event)"></three-link>父元件
// 函数接受子函数传递过来的变量, 子函数中emit的时候触发这个函数。 recPro(event) { this.province = event; }相關推薦:
JS實作點選下拉選單把選擇的內容同步到input輸入框內的實例
JS點選下拉選單把選擇的內容同步到input輸入框內實作方法
#使用output標籤標註JavaScript回傳值的實例分析
以上是angular2 input和output解析的詳細內容。更多資訊請關注PHP中文網其他相關文章!