我是编程新手,这是我发布的第一个问题。
我要做的是使用ng-bind-html
将五个图像文件放入由ng-repeat
创建的div中。这五个图像文件在ng-repeat
的每个元素之间会有所不同。
<div ng-repeat = "newGame in myGamesList">
<div class="col-sm-4 col-lg-4 col-md-4">
<div class="thumbnail">
<div>
<img src="{{newGame.thumbnail}}" alt="">
</div>
<div class="caption">
<h4 class="pull-right">{{newGame.price}}</h4>
<h4><a ng-style="{'font-size': nameSize((newGame.name | removeSubName).length)}" class="categoryGameName" href="#details/{{myGamesList.indexOf(newGame)}}">{{newGame.name | removeSubName}}</a>
</h4>
<p>{{newGame.description}}</p>
</div>
<div id="ratingDiv" style="margin-left: 8px; margin-right: 8px; margin-bottom: 5px;">
<div style="display: inline-block" ng-bind-html="trustedHtml"></div>
<p class="pull-right" style="color: #d17581">{{newGame.numberReviews}} reviews</p>
</div>
</div>
</div>
</div>
我在myApp
中也有此功能,sce
未定义等问题也没有。
$scope.html = getStars(newGame);
$scope.trustedHtml = $sce.trustAsHtml($scope.html);
如果我将newGame
中的getStars(newGame)
替换为代码范围内定义的内容,则使用newGame
(尝试与ng-repeat = "newGame in myGamesList"
中的临时变量匹配)没有出现。
如何才能使newGame
被识别为正在迭代的每个元素?
函数getStars
具有以下代码
$scope.getStars = function(game) {
var numStars = (game.numberStars);
iconString = '';
for (i=0; i<Math.floor(numStars); i++) {
iconString += '<img style="width:16px" class="starGlyph" src="images/fullStar.png" alt=""/>'
}
if (numStars%1 == 0.5) {
iconString += '<img style="width:16px" class="starGlyph" src="images/halfStar.png" alt=""/>'
}
for (j=0; j<(5-Math.ceil(numStars)); j++) {
iconString += '<img style="width:16px" class="starGlyph" src="images/emptyStar.png" alt=""/>'
}
return iconString;
};
如果有帮助的话。为了澄清,我需要newGame
中的每个myGamesList
作为输入getStars
函数的参数。
很抱歉,如果这很难理解,但我试图涵盖我的所有基础!
答案 0 :(得分:2)
$scope.html
来自哪里?
您应该在newGame
中使用ng-bind-html
,如下所示
<div style="display: inline-block" ng-bind-html="getTrustedHtml(newGame)"></div>
在您的控制器中
$scope.getTrustedHtml = function(game) {
// get the game HTML
var html = $scope.getStars(game);
// Return it as trusted HTML for ngBindHtml
return $sce.trustAsHtml(html);
}