gpt4 book ai didi

reactjs - Array Union 未在 Firebase Firestore reactjs 中定义

转载 作者:行者123 更新时间:2023-12-05 05:40:43 27 4
gpt4 key购买 nike

我试图让我的用户一次上传多张图片。现在一切正常,我唯一的问题是我没有在我的 firebase firestore 文档中获取下载 Urls 作为数组。

我正在使用 arrayUnion() 函数将所有内容组合到一个数组中,但它给了我这个错误。 “未处理的拒绝(ReferenceError):未定义 arrayUnion”

我做错了什么?

这是我的代码:

firebase
.firestore()
.collection("Properties")
.add({
propname: propName,
price: price,
bedrooms: bedroom,
bathroom: bathroom,
exclusive: exclusive,
area: area,
type: type,
category: category,
features: features,
services: services,
summary: summary,
// imageUrls: urls,
location: location,
salesAgentID: salesAgent,
date: getCurrentDate(),
})
.then(result => {
const promises = [];
Promise.all(
selectedImages.map(image => {
const storageRef = storage.ref(
`propertyImages/${result.id}/${image.name}`
);
storageRef.put(image).then(urls => {
storageRef.getDownloadURL().then(downloadUrls => {
console.log(downloadUrls);
firebase
.firestore()
.collection("Properties")
.doc(result.id)
.update({
propertyID: result.id,
images: arrayUnion(downloadUrls),//here is my problem
})
.then(res => {
//handleUploadChange();
alert("Property Added Successfully");
window.location.reload();
});
});
});
})
);
});

最佳答案

我使用文档 (documentation link) 中提到的这行代码 firebase.firestore.FieldValue.arrayUnion(downloadUrls) 解决了这个问题Firebase,因为他们升级了 Firebase 版本。

关于reactjs - Array Union 未在 Firebase Firestore reactjs 中定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72352995/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com