Angular 5 @Input width并适用于div

时间:2018-02-05 19:15:34

标签: html angular input

这一定很容易。尝试输入50%,50px,20rem等字符串作为宽度,然后将其应用于组件的html。

<test title="frump" width="50%"></test>

export class test {
  @Input() title: string;
  @Input() width: string;
       ...
  getWidth() {
    return this.width;
  }

<div [ngStyle]="{'width.px': 'getWidth()', ... or
<div [ngStyle]="{'width': 'width', ...

宽度被完全忽略了......? 提前谢谢。

1 个答案:

答案 0 :(得分:1)

看起来你的问题是&#39; width&#39; (第二个)。它是一个变量,所以不应该在引号中。我的例子:

https://stackblitz.com/edit/angular-tgqahd?file=app%2Fapp.component.html