如何为用户添加输入以保存文件?

时间:2019-03-13 10:44:04

标签: angular typescript ionic-framework ionic4

我正在制作一个应用程序,用户在其中录制音频,将其保存在App中,然后可以选择收听。目前,我只是在音频名称中添加了要录制的日期和时间,但是我需要添加用户选项“将音频名称保存为用户所需的内容”。

startRecord() {
    if (this.platform.is('android')) {
  //change here   this.fileName = 'record'+new Date().getDate()+new Date().getMonth()+new Date().getFullYear()+new Date().getHours()+new Date().getMinutes()+new Date().getSeconds()+'.3gp';
        this.filePath = this.file.externalDataDirectory.replace(/file:\/\//g, '') + this.fileName;
         this.audio = this.media.create(this.filePath);
}

最好的方法是什么?

0 个答案:

没有答案