我已经从Angular2 beta升级到RC1
attr.style无法正常工作,没有错误,但是这种风格没有来
<div class="hotspot_info pointer" attr.style="top: {{towerPoint.posY}}%; left: {{towerPoint.posX}}%;" >
最佳答案
导入:
import {NgStyle} from '@angular/common';
设置指令:
directives: [NgStyle]
然后尝试:
<div class="hotspot_info pointer" [ngStyle]="{top: towerPoint.posY+'%'+; left: towerPoint.posX+'%'}" >