gpt4 book ai didi

javascript - 以 Angular 加载测试图像源时出错

转载 作者:行者123 更新时间:2023-11-30 21:17:05 25 4
gpt4 key购买 nike

<div class="col-xs-4 col-sm-4 col-md-4">
{{jsonData[current].profilepic}}
<div ng-if=IsValidImageUrl(jsonData[current].profilepic)>
<img id="pic" ng-src="{{jsonData[current].profilepic}}" alt=""/>
</div>
<div ng-if=!IsValidImageUrl(jsonData[current].profilepic)>
<div id="pic" class="letter">
<div class="circle">{{jsonData[current].firstName.charAt(1)+jsonData[current].lastName.charAt(1)}}</div>
</div>
</div>
</div>

Controller :

app.controller('task1Controller',['$scope', 'taskFactory', '$state', 'imageTestService', function($scope, taskFactory, $state, imageTestService){

$scope.taskData = {};
$scope.current = 0;

taskFactory.get().then(function(response){
$scope.jsonData = response.data.data.resultCareGivers;
});

$scope.IsValidImageUrl = function(url){
return imageTestService.IsValidImageUrl(url); //Error here
};

$scope.viewDetails = function(){
$state.go('view-details', {details: $scope.jsonData[$scope.current]});
};


$scope.back = function(){
$scope.current = ($scope.current !== 0 ? $scope.current - 1 : 0);
};

$scope.next = function(){
$scope.current = ($scope.current !== $scope.jsonData.length-1 ? $scope.current + 1 : $scope.jsonData.length-1);
};

}]);

图像测试服务:

app.service('imageTestService', function($q){

this.IsValidImageUrl = function(url){
var deferred = $q.defer();
if(url != null && url != ""){
var img = new Image();
img.onerror = function() { deferred.resolve(false); };
img.onload = function() { deferred.resolve(true); };
img.src = url;
return deferred.promise;
}
};

});

控制台中的错误堆栈:

Error link

10 $digest() iterations reached. Aborting! Watchers fired in the last 5 iterations: [[{"msg":"IsValidImageUrl(jsonData[current].profilepic)","newVal":{"$$state":{"status":0}},"oldVal":{"$$state":{"status":0}}}],[{"msg":"IsValidImageUrl(jsonData[current].profilepic)","newVal":{"$$state":{"status":0}},"oldVal":{"$$state":{"status":0}}}],[{"msg":"IsValidImageUrl(jsonData[current].profilepic)","newVal":{"$$state":{"status":0}},"oldVal":{"$$state":{"status":0}}}],[{"msg":"IsValidImageUrl(jsonData[current].profilepic)","newVal":{"$$state":{"status":0}},"oldVal":{"$$state":{"status":0}}}],[{"msg":"IsValidImageUrl(jsonData[current].profilepic)","newVal":{"$$state":{"status":0}},"oldVal":{"$$state":{"status":0}}}]]

更新 2:

app.service('imageTestService', function(){

this.IsValidImageUrl = function(url){
var result = {};
if(url != null && url != ""){
var img = new Image();
img.onerror = function() { result.val = true };
img.onload = function() { result.val = false };
return result;
}
};
});

但在控制台中仍然出现相同的错误。

更新 3:

app.service('imageTestService', function(){

this.IsValidImageUrl = function(url){
var result = {
val :false
};
this.img = new Image();
this.img.onabort = function() { result.val = false };
this.img.onerror = function() { result.val = false };
this.img.onload = function() { result.val = true };
return result.val;
};
});

在更新 3 中,无论我做什么,总是调用 image.onabort()

它在函数调用本身时抛出错误 fails to load resource:

$scope.IsValidImageUrl = function(url){    //Failed to load resource error    
return imageTestService.IsValidImageUrl(url);
};

最佳答案

简答

要消除此错误,我们需要 IsValidImageUrl() 方法应返回显式结果的情况。

例如,您可以使用默认值 false 初始化 result:

 this.IsValidImageUrl = function(url){
var result = {
val:false
};
if(url != null && url != ""){
var img = new Image();
img.onerror = function() { result.val = true };
img.onload = function() { result.val = false };
return result.val;
}
};

Demo with 10 $digest() iterations reached error

fixed Demo


长答案

首先让我们了解为什么我们达到了 10 $digest() 迭代。中止!。一般来说,它是 Angular 的一个 guard ,可以摆脱摘要循环的无限循环,这会导致内存泄漏和最后页面卡住。

在我们的例子中,一旦 IsValidImageUrl 将返回不同的结果,Angular 将触发新的摘要循环等等——这将导致上述错误。


ng-if 调用方法不是好的做法| ng-显示/隐藏 | ng-style .... - 这是一个过度杀戮,会影响您的页面性能。

我建议您从 Controller 调用 IsValidImageUrl(jsonData[current].profilepic) 并将其存储在某个地方。对于 ng-if 我们只需要 bool 值。

仅供引用,Image.onloadImage.onError 是回调,因此您首先返回空对象 result 并在延迟一段时间后更新 result 内容包含 Image.onloadImage.onError 回调,这将触发新的摘要循环,这将导致额外调用 IsValidImageUrl()`。

ngIf 指令是监听 result 的观察者,在 10 次循环后将抛出 10 $digest() iterations reached。中止!异常。


关于javascript - 以 Angular 加载测试图像源时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45564984/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com