如果图像存在,我想显示用户图像,如:
<img alt="user_image" src="/images/profile_images/{{result.image}}">
<img alt="user_image" src="/images/default_user.jpg">
如何通过html页面中的angularjs来做到这一点?
您可以创建一个指令checkImage来检查图像是否真的存在:
原文链接:https://www.f2er.com/angularjs/144215.html<img check-image ng-src="{{img}}" alt="Image" width="100%" >
指示:
myApp.directive('checkImage',function($http) { return { restrict: 'A',link: function(scope,element,attrs) { attrs.$observe('ngSrc',function(ngSrc) { $http.get(ngSrc).success(function(){ alert('image exist'); }).error(function(){ alert('image not exist'); element.attr('src','/images/default_user.jpg'); // set default image }); }); } }; });