Загрузите файл CSV из папки ресурсов в IONIC 3 - PullRequest
0 голосов
/ 20 сентября 2018

У меня есть один demo-file.csv файл, и он находится в папке assets/csv, так как я могу скачать его с мобильного телефона,

вот мой код HTML & COMPONENT.

HTML-код

<button ion-button type="button" block (click)="downloadFile('assets/csv/demo-file.csv', 'demo-file.csv')">Download Demo File</button>

КОМПОНЕНТНЫЙ КОД

 public downloadFile(link: any, fileName: any) {
      if (link) {
        let path = null;
        this.showWaitingLoading();
        if (this.platform.is('ios')) {
          path = this.file.documentsDirectory;
        } else {
          path = this.file.dataDirectory;
      }

      const transfer = this.transfer.create();

      transfer.download(link, path + fileName).then(entry => {
        this.dismissWaitingLoading();
        this.openFile(entry.toURL());
      }).catch(() => {
        this.dismissWaitingLoading();
        this.showToastMsg('error', "Something went wrong");
      });
     }
    }
/* ================= OPNE FILE FUNCTION ===========*/

public openFile(path: any) {
   this.fileOpener.open(path, 'application/*')
     .then(() => console.log('File is opened'))
     .catch((e: any) => console.log('Error openening file', e));
}

Я не могу загрузить файл, в моем приложении что-то отсутствуетPATH

Ответы [ 3 ]

0 голосов
/ 25 сентября 2018

Вы можете использовать библиотеку ... Кроме того, HttpClient может читать данные как Blob для вас.

npm i file-saver

// my.component.ts

import * as fileSaver from 'file-saver';

export class MyComponent {

  constructor(private http: HttpClient){}

  downloadFile(path: string) {
    this.startLoading();
    this.http.get(`${MY_APP_URL}/${path}`, { responseType: 'blob' })
      .pipe(tap(blob: Blob => fileSaver.saveAs(blob, 'your_csv_file_name.csv')))
      .subscribe(() => this.stopLoading(), err => this.handleErr(err));
  }
}

Надеюсь, это немного поможет: -)

0 голосов
/ 27 сентября 2018

HTML-код

 <button ion-button type="button" block (click)="downloadFile('demo-file.csv')">Download Demo File</button>

Код компонента

 declare var cordova: any; // declare Top Section of component
 public downloadFile(link: any) {
  if (link) {
    let path = null;
    this.showWaitingLoading();
    if (this.platform.is('ios')) {
    path = cordova.file.documentsDirectory;
  } else {
    path = cordova.file.dataDirectory;
  }

  const transfer = this.transfer.create();
  const imageLocation = `${cordova.file.applicationDirectory}www/assets/csv/${link}`;

  transfer.download(imageLocation, path + link).then(entry => {
    this.dismissWaitingLoading();
    this.openFile(entry.toURL());
  }).catch(() => {
    this.dismissWaitingLoading();
    this.showToastMsg('error', "Something went wrong");
  })
 }

 /* ================= OPNE FILE FUNCTION ===========*/
 public openFile(path: any) {
  this.fileOpener.open(path, 'application/*')
   .then(() => console.log('File is opened'))
   .catch((e: any) => console.log('Error openening file', e));
 }

Пожалуйста, попробуйте этот

0 голосов
/ 24 сентября 2018

Попробуйте прочитать его с помощью Http get и запишите его как BLOB-объект. Пример кода:

export class csvPage {
  csvData: any[] = [];
  headerRow: any[] = [];

  constructor(public navCtrl: NavController, 
    public navParams: NavParams,
    private http: Http) {
      this.readCsvData();
  }

  private readCsvData() {
    this.http.get('assets/dummyData.csv')
      .subscribe(
      data => this.extractData(data),
      err => this.handleError(err)
      );
  }

  private extractData(res) {
    let csvData = res['_body'] || '';
    let parsedData = papa.parse(csvData).data;

    this.headerRow = parsedData[0];

    parsedData.splice(0, 1);
    this.csvData = parsedData;
  }

  downloadCSV() {
    let csv = papa.unparse({
      fields: this.headerRow,
      data: this.csvData
    });

    // Dummy implementation for Desktop download purpose
    var blob = new Blob([csv]);
    var a = window.document.createElement("a");
    a.href = window.URL.createObjectURL(blob);
    a.download = "newdata.csv";
    document.body.appendChild(a);
    a.click();
    document.body.removeChild(a);
  }

  private handleError(err) {
    console.log('something went wrong: ', err);
  }

}
...