作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我下面有一个作用域函数,它返回uniqueUsers。如果我想使用 ng-repeat 以 HTML 格式输出文本,我该怎么做?
// update filter functions
$scope.updateFilter = function (start, end) {
// console.log(start.unix());
thisMonthUsers = [];
records.forEach(function (entry) {
var entryStart = entry.f[3].__text / 1000;
var entryEnd = entry.f[4].__text / 1000;
if (!(entryEnd < start.unix() || entryStart > end.unix())) {
thisMonthUsers.push(entry.f[1].__text);
}
});
var uniqueUsers = thisMonthUsers.filter(Unique); // unique
return uniqueUsers;
}
到目前为止我已经尝试过这个但它不起作用:
<div class="panel-body">
<ul>
<li ng-repeat="uniqueUsers in updateFilter">{{ uniqueUsers() }}</li>
</ul>
</div>
最佳答案
下面的代码可以解决这个问题:
<div class="panel-body">
<ul>
<li ng-repeat="user in users = uniqueUsers() | filter">...</li>
</ul>
</div>
关于javascript - 如何在 Angular 中重复作用域函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36488177/
我是一名优秀的程序员,十分优秀!