私は角度2の新しいです。 高さと幅の2つの入力を持つ再利用可能なコンポーネントを作成する必要があります。正確な大きさの画像。子コンポーネントに渡されるプリミティブな値は、コンストラクタで角度2で定義されていません
parent.htmlで私のコンポーネントの呼び出し:
<user-profile-pic [height]="50" [width]="50" [counterValue]="myValue"></user-profile-pic>
私のコンポーネントユーザープロファイル-PIC:
import {Component,Input} from '@angular/core';
@Component({
selector : 'user-profile-pic',
template: '<img src="http://to/picture.png"> ',
inputs:['width','height']
})
export class UserProfilePic {
/*
@Input() height : String;
@Input() width : String;
*/
public height:String;
public width:String;
constructor() {
console.log("This is the height ",this.height," And the width : ",this.width);
}
}
コンソールは、高さと幅の両方私の未定義をログに記録します。.. 任意の提案ですか?
はどうもありがとうございました。 [とcounterValueについて - その大丈夫、私はそれを知っている] – Chenko47