使用ng-style和ng-repeat时遇到问题。
这是我的代码:
<div style="display:table-row" ng-repeat="row in Data.Communications" id="{{row.Guid}}">
<div style="display:table-cell;">
<img ng-src="{{row.Path}}" ng-show="row.Path" ng-style="row.Style" />
<i class="{{row.Icon}}" ng-show="row.Icon" ng-style="row.Style"></i>
</div>
</div>
这是JSON(来自数据库的加载服务器端):
$scope.Data: {"LastUpdate":"23/03/2016 11:45","Communications":[{"Guid":"2","Path":null,"Icon":"fa fa-warning","Style":"{'color':'#ffff00'}"},{"Guid":"1","Path":null,"Icon":"fa fa-warning","Style":"{'color':'#ffff00'}"},{"Guid":"3","Path":"/images/blink_yellow.gif","Icon":null,"Style":"{'width':'15px', 'height':'15px'}"}]}
“样式”不适用于我的元素。有人可以帮我解决这个问题吗?
答案 0 :(得分:0)
基本上你已经对JSON进行了标记,在将其分配给ng-style
ng-style="doParseToJson(row.Style)"
<强>代码强>
$scope.doParseToJson = function(style){
return JSON.parse(style);
}
同时确保响应应使用"
双qoutes而不是单引号(如'{"color":"#ffff00"}'
)进行换行,以使其对解析JSON有效。