我正在制作一个应用程序,用户在其中录制音频,将其保存在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);
}
最好的方法是什么?