这是我的 AngularJS 代码,用于在用户选择文件时显示图像预览
<form action="<?php echo $this->getFormAction();?>" id="contactproForm" method="post" ng-app="myApp" ng-controller="myCtrl" enctype="multipart/form-data">
<label for="file"><?php echo Mage::helper('contactpro')->__('Attachment') ?></label>
<div class="input-box">
<input type="file" id="file" class="input-text" ngf-select ng-model="picFile" name="attachement" accept="image/png, image/jpeg, image/jpg, application/msword, application/vnd.ms-excel, application/pdf " />
</div>
<label for="file"><?php echo Mage::helper('contactpro')->__('Image Preview') ?></label>
<img ng-show="picFile[0] != null" ngf-src="picFile[0]" class="thumb">
</form>
选择图像时,此行显示缩略图预览
<img ng-show="picFile[0] != null" ngf-src="picFile[0]" class="thumb">
现在的问题是当我选择图像时,图像缩略图显示正确,但是当我选择 pdf、doc 或任何其他文件格式时,它显示破解图像缩略图。如何在此处放置一些 AngularJs 条件,使其仅在选择图像时才显示图像缩略图,否则不显示任何内容。