ng-src 与 ng-show 不工作
ng-src with ng-show not working
我在 ng-src
中附加了 /File/
,它通过 Id 从数据库调用我的图像源。如何使用use ng-show
condition?
这是我的代码:
<img ng-src="/File/{{review.ProfileImage}}" class="media-object img-circle">
有人知道这件事吗?
您不应在 ngShow
directive 中使用插值。只需使用一个简单的条件来检查您的 review.ProfileImage
字段:
<img ng-src="/File/{{review.ProfileImage}}" ng-show="review.ProfileImage" class="media-object img-circle"/>
对于您的情况,我建议使用 ngIf
instead of ngShow
(在这种情况下,img
将从 DOM 中删除,并且您不会通过图像源请求访问您的后端) .
我在 ng-src
中附加了 /File/
,它通过 Id 从数据库调用我的图像源。如何使用use ng-show
condition?
这是我的代码:
<img ng-src="/File/{{review.ProfileImage}}" class="media-object img-circle">
有人知道这件事吗?
您不应在 ngShow
directive 中使用插值。只需使用一个简单的条件来检查您的 review.ProfileImage
字段:
<img ng-src="/File/{{review.ProfileImage}}" ng-show="review.ProfileImage" class="media-object img-circle"/>
对于您的情况,我建议使用 ngIf
instead of ngShow
(在这种情况下,img
将从 DOM 中删除,并且您不会通过图像源请求访问您的后端) .