如何使用swift以swift字典格式创建类型存储引用的字段。我继续收到错误说FIRStorageReference。 这是下面的代码,photoRef是一个存储参考:
let newFirePhotoRef = newUserRef.collection("Photos").document()
photoRef = photoRef.child(newFirePhotoRef.documentID)
newFirePhotoRef.setData([
"Date":Date(),
"Photo Reference in Storage": photoRef
])
这是我收到的错误:
由于未捕获的异常终止应用' FIRInvalidArgumentException',原因:'不支持的类型:FIRStorageReference(在字段Photo Reference in Storage
中找到)'