首頁 > web前端 > js教程 > 主體

了解一下angular中的@Input()和@Output()

青灯夜游
發布: 2021-02-01 11:47:55
轉載
2899 人瀏覽過

了解一下angular中的@Input()和@Output()

相關教學推薦:angularjs(影片教學)

建立Student class

就只有幾個簡單的屬性(執行下面的屬性可以快速產生)
ng generate class entity/student

#
export class Student {
    id: number;
    name: string;
    age: number;
}
登入後複製

建立child component

ts

import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
import { Student } from '../entity/student';
@Component({
  selector: 'app-child',
  templateUrl: './child.component.html',
  styleUrls: ['./child.component.css']
})
export class ChildComponent implements OnInit {
  @Input() stu: Student;
  @Output() deleteEvent = new EventEmitter<number>();
  constructor() { }
  ngOnInit() {
  }
  delete(id) {
    this.stu = null;
    this.deleteEvent.emit(id);
  }
}
登入後複製

html

<p *ngIf="stu">
  {{stu.id}} -- {{stu.name}} -- {{stu.age}}  <button (click)="delete(stu.id)">delete</button>
</p>
登入後複製

修改app.component

import { Component } from '@angular/core';
import { Student } from './entity/student';
@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  stus: Student[] = [
    {id: 1, name: '里斯', age: 3},
    {id: 2, name: '里斯2', age: 4},
    {id: 3, name: '里斯3', age: 5},
  ];
  stu: Student;
  constructor() {
  }
  selected(stu) {
    this.stu = stu;
  }
  deleteStu(id: number) {
    this.stus.forEach((val, index) => {
      if ( val.id === id) {
        this.stus.splice(index, 1);
        return;
      }
    });
  }
}
登入後複製

html

<p>
  <ul>
    <li *ngFor="let stu of stus" (click)="selected(stu)"> {{stu.id}} -- {{stu.name}} -- {{stu.age}} </li>
  </ul>
</p>
<app-child [stu]="stu" (deleteEvent)="deleteStu($event)"></app-child>
登入後複製

@Input() 很簡單,就是將父元件的資料給子元件的一個屬性;
@Output() 子元件建立一個EventEmitter,子組件的操作會觸發EventEmitter ,然後將這個EventEmitter 物件賦值給父組件的一個method ,改方法會拿到EventEmitter物件給的參數,然後進行處理;

更多程式相關知識,可訪問:程式教學! !

以上是了解一下angular中的@Input()和@Output()的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:cnblogs.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!