我想向用户显示将iOS应用中记录的视频文件上传到Firebase时的进度条,因此我正在使用SDK的observeStatus
功能:
// Create a root reference
FIRStorageReference *storageRef = [_storage reference];
// Create a reference to the video
FIRStorageReference *videoRef = [storageRef child:uuidString];
// Upload the file
FIRStorageUploadTask* uploadTask = [videoRef putFile:url metadata:nil];
[uploadTask observeStatus:FIRStorageTaskStatusProgress handler:^(FIRStorageTaskSnapshot *snapshot) {
// A progress event occurred
double percentComplete = 100.0 * (snapshot.progress.completedUnitCount) / (snapshot.progress.totalUnitCount);
NSLog(@"Video with ID %d recording upload progress: %f, completed unit count %lld, total unit count %lld", video.videoId, percentComplete, snapshot.progress.completedUnitCount, snapshot.progress.totalUnitCount);
}];
然而,'总单位数'似乎总是为0,这意味着计算出的完成百分比会因整个0分的情况而变得有点疯狂:
Video with ID 3 recording upload progress: inf, completed unit count 163922, total unit count 0
我做错了吗?按照here所述的文档进行操作。
[也在Swift中复制]
答案 0 :(得分:1)
<强> EDITED 强>
使用data
上传工作正常:
NSData *data = // ... some real data to upload
FIRStorageReference *storageRef = [storage referenceForURL:@"gs://<YOURPATH>"];
// Upload the file to the path
FIRStorageUploadTask *uploadTask = [storageRef putData:data metadata:nil completion:^(FIRStorageMetadata * _Nullable metadata, NSError * _Nullable error) {
if (error != nil) {
// Error handle it
} else {
NSString *urlToDownload = metadata.downloadURL;
}
}];
// Add a progress observer to an upload task
[uploadTask observeStatus:FIRStorageTaskStatusProgress
handler:^(FIRStorageTaskSnapshot *snapshot) {
// A progress event occurred
double percentComplete = 100.0 * (snapshot.progress.completedUnitCount) / (snapshot.progress.totalUnitCount);
NSLog(@"\n\nloading...%f",percentComplete);
}];
我希望这可以帮助OP或其他任何人。
答案 1 :(得分:1)
这不是我们想要的答案,但我猜测Firebase SDK中存在一个错误,即它没有正确创建. one
. two
. three
+
image::mypict.png[]
. four
实例。
因此,您可以在创建上载任务之前捕获文件大小。我正在使用这个扩展(为方便起见,它与IUO超级崩溃)。
NSProgress
捕获文件大小值,并在计算中使用它代替extension NSFileManager {
func fileSize(atUrl url: NSURL) -> Int64 {
return try! NSFileManager.defaultManager().attributesOfItemAtPath(url.path!)[NSFileSize]!.longLongValue
}
}
。
FWIW我在https://firebase.google.com/support/contact/bugs-features/
提交了此问题的错误答案 2 :(得分:1)
我们实际上正确地创建了NSProgress
,并在内存上传(putData
)中正确更新它,但是没有获得文件上传的文件大小(putFile
),因为显然我没有发现文件属性/它们并不总是正确的。
我即将开始修复,现在您可以使用NSFileManager.defaultManager().attributesOfItemAtPath(url.path!)[NSFileSize]!.longLongValue
解决方法来获取文件大小:)
编辑(10/10/16):这已经解决,如果您使用最新版本的Firebase存储,则不会出现此问题:)