google-cloud-firestore 相关问题

Cloud Firestore是一个自动扩展的实时文档数据库,用于存储,同步和查询用于移动,Web和服务器开发的数据。


如何从后端跟踪后端的用户活动? 我正在使用firebase auth,必须对我的用户进行身份验证才能使用该应用程序。 我想概述用户的(Web)应用程序使用情况。当然,我可以从

如果用户利用该应用程序并私下访问由规则保护的Firestore的数据,则后端具有有关用户已读取或书面特定数据的信息;有什么方法可以访问此数据?

回答 2 投票 0

FireBaseAuth:如何从后端跟踪后端的用户活动?

客户可以被黑客入侵,可以阻止http呼叫等等。

回答 0 投票 0


我正在努力节省用户选择的时间。选择的时间应保存到Firestore。在我的日志中,

data class PlaceData( val name: String = "", val capacity: Int = 0, val id: String = "", val placeImageUrl: String = "", val availableTimes: List<String> = emptyList() // Firestore can handle this ):Serializable

回答 1 投票 0

typeerror:functions.firestore.document不是firebase cloud函数

我有一段时间没有更改我的firebase功能,昨天我想创建一个新的firebase函数并将其添加到我所有功能的顶部,所以这是我的第一行: const函数= r ...

回答 2 投票 0

在Firestore中等效[重复]

我有象限在弗里斯特尔(Firestore)的学校和单独的学校收藏。需要等效于此SQL: 从象限中选择 geohash ='电流' 和学校。

回答 1 投票 0



时间戳desc

const outputSnapShot = {}; this.subscribe = firebase .firestore() .collection('orders') .where('restaurant_code', '==', this.state.restaurantCode) .orderBy('timestamp', 'desc') .onSnapshot((doc) => { doc.docs.map(function(documentSnapshot) { return (outputSnapShot[documentSnapshot.id] = documentSnapshot.data()); }); if (this._isMounted) { this.setState({ dataSource: Object.entries(outputSnapShot) }); } });

回答 2 投票 0

在Firebase Cloud函数实时部署中找到403禁止错误,但在模拟器中正常工作,可以使用localhost

当我使用localhost的PC使用firebase云功能模拟器发送Axios Post请求时,我将从API中获得响应。

回答 0 投票 0





firestore.rules允许仅阅读单个文档

我的firestore.rules到目前为止成功地限制了基于参与者的访问。

回答 1 投票 0

FIRESTOREANDROID在自定义包裹类中添加“稳定性”字段,同时保存

我有一个可穿戴的班级图像 @parcelize 数据类图像(Val ID:String =“”,Val url:String =“”):包裹 并为消费者节省 val data =hashmap() da ...

回答 2 投票 0


我们可以使用Extension将非默认数据库Firestore的集合导出到BigQuery

; resource_error at/deployments/firebase-ext-firestore-bigquery-export/resources/fsexportbigquery:{“ resourceType”:“ gcp-types/cloudfunctions-v1:projects.locations.locations.locations.locations.locations.functions.functions”,&q ...&q ...

回答 1 投票 0

Flutter + Firestore 如何使用 DocumentReference 插入新文档?

我正在慢慢学习 firestore 并尝试创建一个新文档,该文档将有两个字段作为对其他文档的引用。作为一个字符串,我存储它们没有问题,但它会更多

回答 1 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.