腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
文章
问答
(9999+)
视频
沙龙
2
回答
Firebase管理
firestore
错误:'Query‘对象没有'stream’属性
python
、
firebase
、
google-cloud-firestore
我无法从
python
admin sdk
查询
firebase
firestore
数据库
。现在,我正在尝试使用stream进行
查询
,就像文档所说的那样: db.collection('myDatabase').where( 'ticker', '==', variable['ticker'==', variable['type']).stream() 当我运行这段代码时,我得到了以下错误:&
浏览 8
提问于2020-01-23
得票数 0
3
回答
如
何在
Python
中
正确
查询
Firestore
数据库
python
、
google-cloud-firestore
我尝试了多种方法来使用.where()和
firestore
,最后我只是传递了.where()并使用了.get() if/else语句来检查数据。使用Javascript,这是相当简单的。
Python
文档并不容易理解。如何
正确
使用它?
浏览 31
提问于2019-12-12
得票数 0
回答已采纳
2
回答
如
何在
Firebase中找到经过身份验证的用户的电话号码?
android
、
firebase
、
firebase-authentication
如果用户的任何联系人没有创建该帐户,则该联系人不应在列表
中
。我找不到一种适当的方法来
查询
我的已验证用户,并将他们与用户的联系人进行比较。我如何才能做到这一点?
浏览 22
提问于2019-04-23
得票数 1
回答已采纳
1
回答
Flutter Firebase如何集成生成令牌的第三方身份验证
firebase
、
authentication
、
flutter
、
google-cloud-firestore
、
firebase-authentication
我想使用令牌从第三方
数据库
中
检索用户信息,我希望将这些信息保存在Firestone
中
,以便以后可以
查询
并利用
Firestore
功能,
如
离线数据持久性、特定用户信息通知和分析。为了生成这个标记,我给出了以下输入参数: cardNumber (int) PIN (int)我找不到任何使用flutter的导游
浏览 5
提问于2019-07-26
得票数 0
2
回答
如
何在
python
中使用where子句从
firestore
中
的数组
中
删除元素
python
、
arrays
、
firebase
、
google-cloud-firestore
如果monthName是一月,我想从两个数组
中
删除整个数组字典。
浏览 0
提问于2020-11-09
得票数 2
1
回答
高效地获取单个文档,在子集合
中
执行点
查询
firebase
、
google-cloud-firestore
、
nosql
假设我正在设计一个新的
Firestore
数据库
。假设我喜欢分层设计的想法,并且,作为一个人为的例子,每个年都有一系列的子Week,其中每个都有Days。答案允许包含对模型的更改,例如,“去或化”日期模型,使其包括year、week和dayName字段(并
查询
它们)。
浏览 3
提问于2021-12-23
得票数 0
回答已采纳
1
回答
Firestore
按月过滤数据
google-cloud-firestore
_
firestore
.collection('Employee').orderByChild is not a function。下面是我的代码和
数据库
结构const month = 5
firestore
.collection('Employee').orderByChild("month").equalTo(month
浏览 2
提问于2020-05-09
得票数 0
3
回答
Firestore
:我如何才能
正确
地按带有重音字符的字符串排序?
ios
、
swift
、
firebase
、
google-cloud-firestore
我的
Firestore
数据库
包括带有重音字符的单词,
如
and (é)、tilde (I)、umlaut (ü)和cedilla (ü)。我已经创建了一个自定义索引,以便按此字段进行排序,但是带有这些字符的单词的位置不
正确
。期望顺序示例:我从
Firestore
得到的东西:我的
查询
如下: let query = historyRef.whereField
浏览 2
提问于2018-01-21
得票数 5
回答已采纳
2
回答
Uncaught : db.collection不是用于防火墙
中
的实时
数据库
的函数。
firebase
、
react-native
、
firebase-realtime-database
、
google-cloud-firestore
我的firebase应用程序是在我的主应用程序组件
中
初始化的。 } .catch(err => { });我在App.js
中
包含了这个组件
浏览 1
提问于2020-01-16
得票数 1
回答已采纳
1
回答
用document_id编写的
Python
集合
查询
顺序
python
、
google-cloud-firestore
我们可以用javascript,.orderBy(firebase.
firestore
.FieldPath.documentId())命令documentId进行集合
查询
。如
何在
python
中
这样做,似乎无法在
python
引用中找到类似的对象(field_path.document_id)。
浏览 8
提问于2022-11-01
得票数 0
7
回答
如何连接到scala
中
的postgreSQL
数据库
?
postgresql
、
scala
我想知道如
何在
scala
中
执行以下操作? 编写SQL
查询
,
如
SELECT、UPDATE等,以修改
数据库
中
的表。我知道在
python
中
我可以使用PygreSQL来完成,但是如
何在
scala
中
完成这些工作呢?
浏览 3
提问于2010-07-07
得票数 30
1
回答
android
中
的管道防火墙请求
android
、
firebase
、
google-cloud-firestore
我试图同时向
Firestore
发送多个请求。我需要一次检索多个对象,请求目前不可能在一个Query
中
实现,因为它们位于不同的位置,并且
Firestore
还没有
查询
多个位置或与SQL
中
的IN操作符等价。从这个问题中,我知道可以将
查询
连接到一起,因为它使用一个连接,但是我找不到任何关于如
何在
android
中
这样做的内容。 那么,我如
何在
Android中
正确
地处理
Firestore
请求呢?
浏览 1
提问于2018-03-10
得票数 4
回答已采纳
1
回答
从Firebase
Firestore
获取Int数据和
ios
、
swift
、
firebase
、
dictionary
、
google-cloud-firestore
大家好,当我从
Firestore
读取数据时,我需要对值做一个和。--这就是我如
何在
Firestore
中保存值的方法。UserDefaults.standard.integer(forKey: "addExam.Vote.ref"))"
浏览 4
提问于2020-05-06
得票数 0
回答已采纳
1
回答
有了这些
查询
,就可以在不需要云函数的情况下使用
Firestore
来实现这一点。
reactjs
、
firebase
、
google-cloud-firestore
、
google-cloud-functions
、
nosql
我正在构建一个应用程序使用Firebase
Firestore
+ ReactJS,其中只有一个用户添加订单和管理库存。在order collection
中
,对于字段产品sizes和color,我考虑使用array或map。我还不确定。任何帮助都将不胜感激。 这些
查询
是否可以在不需要云函数的情况下在
Firestore
中
浏览 7
提问于2022-02-03
得票数 0
回答已采纳
2
回答
在范围内使用GeoFireStore Android检索用户
java
、
android
、
firebase
、
google-cloud-firestore
、
geofirestore
在我的Android应用程序
中
,我需要使用GeoFireStore在一个范围内获得一个用户列表。我从这个得到的所有信息。
浏览 0
提问于2019-05-06
得票数 4
回答已采纳
1
回答
是否有任何Firebase
数据库
支持图表?
firebase
、
firebase-realtime-database
、
firebase-storage
、
graph-databases
、
google-cloud-firestore
是否有任何防火墙
数据库
类型(
Firestore
、Realtime、firebase存储)支持像数据建模这样的图形?如果没有,是否有任何图形
数据库
可以与防火墙
数据库
集成(比如JanusGraph将BigTable集成为后端数据存储)?
浏览 2
提问于2017-12-03
得票数 10
回答已采纳
1
回答
firebase where
查询
不起作用
javascript
、
firebase
、
firebase-realtime-database
、
google-cloud-firestore
我正在尝试运行以下
查询
: const query = getAttendCount.wheresnapshot.val()))我有这些值:128158164 在上面的例子
中
,
浏览 21
提问于2020-02-23
得票数 0
回答已采纳
2
回答
如
何在
不订阅的情况下从
Firestore
获取数据
angular
、
google-cloud-firestore
我正在尝试使用angularfire2 / angular 6在
Firestore
中
获取特定用户的单个元素(路径)。我正在尝试通过查找用户UID来获取单个项目(路径)。我知道如
何在
Firestore
中使用
查询
。有人知道如
何在
没有订阅的情况下从<em
浏览 11
提问于2018-09-07
得票数 1
2
回答
在集合
中
修复生成的密钥与自定义密钥?
java
、
android
、
firebase
、
google-cloud-firestore
我在我的Android应用程序中使用Cloud
数据库
,我在集合中有不同的文档,比如: uid用于用户,按下了餐馆的键,以及我的菜谱的编号。对于我理解使用uid的用户来说,更好的方法是为我的餐馆使用
Firestore
推送I吗?这是惯例还是为什么要用呢? 我还试着用生成唯一的键,但对于我来说,只使用数字就更容易了。这是个糟糕的方法吗?
浏览 1
提问于2018-06-25
得票数 8
回答已采纳
1
回答
云修复安全规则,不适用于智能手机
google-cloud-firestore
Querys和更新在智能手机
中
不起作用,但在仿真器(云修复)
中
是有效的。应用程序需要认证。当用户注册时,数据将保存在“身份验证”
中
,而不保存在“云修复”集合
中
。我的安全规则代码:service cloud.
firestore
{ ma
浏览 6
提问于2021-03-17
得票数 0
回答已采纳
点击加载更多
热门
标签
更多标签
云服务器
ICP备案
对象存储
云点播
即时通信 IM
活动推荐
运营活动
广告
关闭
领券