我正在使用Cordova Media将音频录制到一个空文件中。
要上传它,我需要在文件上具有内容类型。
我正在尝试将文件转换为Blob,以便可以设置内容类型,但是我正在努力将文件转换为Blob
state.cordova.localDirectory.getFile(filename,{create:true, exclusive:false},
f => {
const options = {
SampleRate: 16000,
NumberOfChannels: 1,
}
media = new window.Media(f.nativeURL,() =>
f.file(file => {
const blob = new Blob(file,{type: 'audio/m4u'}) <-- Trying to convert file into a blob here
blob.lastModifiedDate = new Date()
blob.name = filename
console.log(blob)
upload(blob,'audio/m4u')
.then(data=> {console.log(data);store.dispatch(voiceAudioUploaded(sessionId,gameTaskId,data))}, err=> console.log(err))
}
, err => console.log('err',err) ))
media.startRecordWithCompression(options)
})
错误是`
无法构造“ Blob”:迭代器getter不可调用。
`
答案 0 :(得分:4)
尝试
TableExists