我需要将多 css 规则应用于角度表单模板中的 html 标记。
<div class="form-control" id="data.objectStyle"
ng-model="data.type"
ng-style="getStyle(data.objectStyle)">
{{data.objectStyle.title}}
</div>
控制器中的 getStyle 函数:
$scope.getStyle = function (taskType) {
return {
background-color:taskType.backColor,
color: taskType.color,
font-size:taskType.fontSize,
font-family:taskType.font
}
)};
任务类型对象:
{
backColor:'#006',
color:'#56DA',
fontSize:12,
font:'New Times Roman'
}
该getStyle
函数不返回样式!该怎么办?