您好这是我第一次在stackoverflow上提问。 我正在开发angular2:v2.1.0(typescript-v2.0.10)中的应用程序。我正在使用" ng2-file-upload"用于文件上传。 HTML代码如下:
<div class="container-fluid">
<h5 class="titleCenter"> File Upload </h5>
<div class="drop-zone" ng2FileDrop
[ngClass]="{'nv-file-over': hasBaseDropZoneOver, 'pointerBan': testDisablDropZone}"
(fileOver)="fileOverBase($event)"
[uploader]="uploader">
<span *ngIf="isUploaderEmpty(uploader.queue)">Drop Down box for the CSV file only...!!!</span>
<span *ngFor="let item of uploader.queue" >
<p class="row" >
<i class="fileIcon"></i>
<strong>{{ item?.file?.name }}</strong>
<a class="fileUploadRemoveButton fa fa-times-circle" (click)="item.remove()"></a>
</p>
</span>
</div>
<div [ngClass]="{'activeCheckButton': testDisablDropZone}" class="CheckboxZone" (click)="disableDropZone($event)" style="margin-top: 10px">
<span>Click here to disable the dropdown box.</span>
</div>
</div>
<button type="button" (click)="test($event)">click</button>
在这里,当我点击了课程&#39; CheckboxZone&#39;它调用函数&#39; disableDropZone($ event)&#39;但在此之后它调用了函数&id; idUploadEmpty()&#39;太。按钮的情况相同也点击。 该组件的代码如下:
const URL = 'https://evening-anchorage-3159.herokuapp.com/api/';
@Component({
selector: 'fileupload',
templateUrl: './fileupload.component.html',
styleUrls: ['./fileupload.component.scss']
})
export default class FileuploadComponent {
public uploader:FileUploader = new FileUploader({url: URL, autoUpload:true, allowedMimeType:['text/csv'] });
public hasBaseDropZoneOver:boolean = false;
public hasAnotherDropZoneOver:boolean = false;
private fileType =['json'];
private flagFile = false;
private testDisablDropZone = false;
private fileNotAccepted = false;
public fileOverBase(e:any):void {
this.hasBaseDropZoneOver = e;
console.log('EVENT fileOverBase : ', e);
}
public fileOverAnother(e:any):void {
this.hasAnotherDropZoneOver = e;
console.log('fileOverAnother : ', e);
}
isUploaderEmpty (uploaderQueue): boolean {
console.log('Queue pqssed from View : ',this.uploader.queue);
let qLength = uploaderQueue.length;
if(uploaderQueue.length==0){
this.fileNotAccepted = true;
return true;}
if (qLength > 1){
uploaderQueue.pop();
this.flagFile = true;
let timer = Observable.timer(3000,10000);
timer.subscribe(t=>{
this.flagFile = false
});
}
return false;
}
disableDropZone () {
console.log('disableDropZone clicked...!!!');
this.testDisablDropZone =! this.testDisablDropZone;
}
test(event) {
console.log('OK')
}
}
很难理解它为什么要调用函数&is; #UploaderEmpty()&#39;一直触发事件的所有时间。
谢谢。
答案 0 :(得分:1)
实际上很容易。
当您定义 ngIf 时,您在其中放置了一个表达式吗?
这意味着每次在该组件内部进行更新时,Angular需要确保评估ngIf
内的表达式。 (这是你对Angular的期望吗?其他明智的为什么你会使用ngIf
?)
因此,每当模型中有更新时,或者更确切地说,每次有触发changeDetection的内容时,Angular都会计算该表达式,在您的情况下,该表达式是一个函数(isUploaderEmpty)。
通常,事件是触发changeDetection的事情之一(它比这更复杂)。
这就是为什么:D。