0
當我嘗試將數據從父項傳遞給子組件時,出現錯誤。無法將角度4中的父數據傳遞給子組件
這是我把它放在父組件中的標籤。
<pop-up [showPopUp]="true" [content]="content" [title]="title goes here"></pop-up>
子組件
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'pop-up',
templateUrl: './pop-up.component.html',
styleUrls: ['./pop-up.component.css']
})
export class PopUpComponent implements OnInit {
@Input()
showPopUp: boolean;
@Input()
title: string = "";
@Input()
content: string = "";
constructor() {
}
ngOnInit() {
debugger;
}
proceed() {
this.showPopUp = true;
}
closePopUp() {
this.showPopUp = false;
}
}
我想使用的變量showPopUp
,標題和內容中的HTML這樣
<h5 class="modal-title" id="exampleModalLabel">{{title}}</h5>
<h5 class="modal-title" id="exampleModalLabel">{{content}}</h5>
我不知道我到底做錯了什麼。
謝謝,我可以知道它採用這種格式的原因嗎 –
我在我的回答中已經添加了一個解釋(您可能還沒有看到它,因爲我在我的初始文章後編輯了我的答案)。 '[]'是特殊的Angular綁定語法。 –