作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
任务是在模板中显示图像,但前提是图像尺寸比 > 2
<img class="main-img" ng-if="showImage($index)" ng-src="{{item.img}}">
功能:
$scope.showImage = function(index) {
var img = new Image();
img.src = $scope.items[index].img;
img.addEventListener("load", function() {
var ratio = this.naturalWidth / this.naturalHeight;
if (ratio > 2) {
return true;
} else {
return false;
}
})
}
ng-if 不等待图像加载。怎么修?谢谢。
最佳答案
通过在函数末尾运行 $scope.$apply() ,您可以强制 Angular 加载图像。
$scope.showImage = function(index) {
var img = new Image();
img.src = $scope.items[index].img;
img.addEventListener("load", function() {
var ratio = this.naturalWidth / this.naturalHeight;
if (ratio > 2) {
return true;
} else {
return false;
}
})
$scope.apply()
}
关于javascript - 如何将 ng-if 与异步函数一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32479169/
我是一名优秀的程序员,十分优秀!