很抱歉我正在使用AngularFire2 Storage上传文件,但无法检索下载URL ..我在这里做什么错了?
我在控制台中没有收到任何特定错误。根本没有输出
startUpload(event) {
const file = event.target.files[0];
if (file.type.split('/')[0] !== 'image') {
console.error('unsupported file type :(');
}
const filePath = `images/${new Date().getTime()}_${file.name}`;
const customMetadata = {app: 'PlayDate'};
const fileRef = this.storage.ref(filePath);
this.task = this.storage.upload(filePath, file, {customMetadata});
this.task.snapshotChanges().pipe(
finalize(() => {
fileRef.getDownloadURL().subscribe(url => {
console.log('url is', url);
});
})
);
}