Где взять ответ ngx-uploader?

У меня есть ответ JSON из моего URL для моих загрузок, но в коде я не могу его получить, можете ли вы подсказать, где и как я могу его получить?

onUploadOutput(output: UploadOutput): void {

if (output.type === 'allAddedToQueue') {
  const event: UploadInput = {
    type: 'uploadAll',
    url: this.url,
    method: 'POST',
    data: {foo: 'bar'}
  };

  this.uploadInput.emit(event);

........

} else if (output.type === 'done') {
  this.files.forEach(file => {
    console.log('ciao'); //DIDN'T WORK
    console.log(file.response); //DIDN'T WORK
    this.uploadInput.emit(file.response);
  });
}

this.files = this.files.filter(file => file.progress.status !== UploadStatus.Done);

  }
}

0 ответов

Нашел решение, отредактируйте модуль ngx-uploader и измените этот код около строки 236 в ngx-uploader.js:


    xhr.onreadystatechange = () => {
    if (xhr.readyState === 4) {
    /** @type {?} */

Другие вопросы по тегам