- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
FirebaseFirestore.instance.collection('locations').getDocuments().then((docs){
if(docs.documents.isNotEmpty){
for(int i=0 ;i<docs.documents.length;i++){
initMarker(docs.documents[i].data , docs.documents[i].documentID);
}
}
});
}
初始化标记捕捉
void initMarker(request,requestId){
var markerIdVal = requestId;
final MarkerId markerId = MarkerId(markerIdVal);
//creating a new Marker
final Marker marker = Marker(
markerId:markerId,
position:LatLng(request['loc_Coords'].lattitude,request['loc_Coords'].longitude),
infoWindow:InfoWindow(
title:request['loc_Name'],
snippet:request['loc_Description'],
),
);
setState((){
markers[markerId] = marker;
print(markerId);
});
方法“getDocuments”没有为类型“CollectionReference”定义。
请问您能帮我解决这个错误吗?
最佳答案
如果您一次性阅读集合,请使用方法 get() 而不是 getDocuments()。
关于flutter - 方法 'getDocuments' 没有为类型 'CollectionReference' 定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66622922/
我有一个 ionic 应用程序试图更新 firebase 中的记录。我不断收到此错误。不知道我做错了什么。 Error: Uncaught (in promise): FirebaseError: [
我正在使用 Firebase Firestore 查询具有特定 ID 的一些文档。这是我的结构: 编辑:在此行之后添加屏幕截图和说明: generateId 和 id 具有相同的值。我有这些“id”的
这是我第一次使用 StackOverflow。希望有人可以帮助我! 我正在尝试编写 React-redux 应用程序,目前正在尝试将 Firebase 集成到应用程序中。当我 console.log
当我们查看用于处理 Firesore CollectionReference 对象的 NodeJS API 时,我们发现它有一个名为 get() 的方法。这记录在此处: https://googlea
package com.AZERTYQSD.phm; import androidx.annotation.NonNull; import androidx.appcompat.app.AppComp
这个问题在这里已经有了答案: Problems with Firestore connections executing threads (3 个答案) 关闭 4 年前。 List uniN
在 Android 应用程序中,我有以下内容: notebookRef = FirebaseFirestore.getInstance().collection("Registros"); noteb
我正在使用 Flutter 和 Firebase Cloud Firestore。请问,如何按字段查询 CollectionReference?喜欢: * database ** collection
FirebaseFirestore.instance.collection('locations').getDocuments().then((docs){ if(docs.documen
我想在我的 firestore 云中存储我的用户数据。所以文档 ID 应该是来自 auth 的用户 ID。当我手动设置文档 ID 时,我无法设置数据。那是我的代码: currentuser = Fir
没有为类型“CollectionReference”定义方法“document”。 尝试将名称更正为现有方法的名称,或定义名为“文档”的方法。 我在我的项目中收到此错误。你能帮助我吗? 我的代码: i
我想将图像存储在 firebase 存储中,并在 firestore 中传递其 URL 引用。因此,我可以在存储中上传图像,但无法在 cloud firestore 中传递图像 URL 引用。 imp
在 Firestore 中,我有一个名为“习惯”的集合,每个文档都有一个包含用户 ID 的数组。我现在想获得一个集合,其中包含数组中包含特定用户 ID 的所有习惯。 这是我的代码: final Col
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我正在尝试使用 next.js 设置 Firebase。我在控制台中收到此错误。 FirebaseError: Expected first argument to collection() to b
我正在努力迁移 firebase v8 -> v9。我有一个带有 Storybook 的组件库,用于演示组件。该库通过 NPM/Github 包作为包发布。 迁移没有给我带来任何麻烦,除了这个。在我的
我是一名优秀的程序员,十分优秀!