动态样式在Angular2中不起作用

时间:2016-05-22 11:25:36

标签: css angularjs typescript angular angular2-template

以下是我的工作代码,它没有在控制台中给出任何错误并按预期打印数组项和测试标题。但不知何故动态背景造型不起作用,让我知道我在这里做错了什么。

import { Component } from '@angular/core';

@Component({
    selector: 'my-app',
    template: `
        <h1>{{name}}</h1>
        <div class="one" *ngFor="let item of colArr" style="background: {{item}};">{{item}}</div>
    `,
    styles: [`
        .one {
            width: 100%;
            text-align: center;
            padding: 10px;
            margin: 5px;
        }
    `]
})

export class HomeComponent {
    public name = 'test';
    public colArr = ['#111111', '#222222', '#333333', '#444444', '#555555', '#666666', '#777777', '#888888', '#999999'];
}

以下是我得到的输出 -

image

1 个答案:

答案 0 :(得分:2)

不鼓励直接绑定到overflow: hidden(在所有浏览器上都不能正常工作)。改为使用

style

<div class="one" *ngFor="let item of colArr" [ngStyle]="{background: item}">{{item}}</div>