我已经启动了一个无服务器Web应用程序的Firebase项目。我可以从客户端访问Firestore数据库。从无服务器方面,我编写了一个在http请求上调用的函数。该函数正在尝试通过Firestore对象访问数据库,但由于Firestore对象没有我认为应该具有的collection()函数,因此它失败了。在输出中,我显示了Firestore对象的内容。
const functions = require('firebase-functions');
exports.noteList = functions.https.onRequest((req, res) => {
db = functions.firestore;
console.dir(db);
db.collection("notes").listDocuments().then(documentRefs => {
return db.getAll(documentRefs);
}).then(documentSnapshots => {
res.json(documentSnapshots);
});
});
输出:
{ provider: 'google.firestore',
service: 'firestore.googleapis.com',
defaultDatabase: '(default)',
document: [Function: document],
namespace: [Function: namespace],
database: [Function: database],
_databaseWithOpts: [Function: _databaseWithOpts],
_namespaceWithOpts: [Function: _namespaceWithOpts],
_documentWithOpts: [Function: _documentWithOpts],
DatabaseBuilder: [Function: DatabaseBuilder],
NamespaceBuilder: [Function: NamespaceBuilder],
snapshotConstructor: [Function: snapshotConstructor],
beforeSnapshotConstructor: [Function: beforeSnapshotConstructor],
DocumentBuilder: [Function: DocumentBuilder] }
Function crashed
TypeError: db.collection is not a function
为了进行比较,这是我从客户端访问数据库的方式,这是有效的:
function main() {
var db = firebase.firestore();
db.collection("global").doc("public").get().then(
function(r) {
var number_span = document.getElementById("number_span");
data = r.data();
number_span.textContent = "" + data.counter;
});
}
当然,firebase对象是通过不同方式获得的。也许缺少某些配置?
答案 0 :(得分:1)
您需要使用Firestore SDK(通常通过Firebase Admin SDK)来访问Firestore。 Cloud Functions SDK(firebase-functions)不会为您执行此操作。它所做的只是帮助您指定要部署的功能。该函数的主体应使用Firestore SDK。
// require and initialize the admin SDK
const admin = require('firebase-admin');
admin.initializeApp();
// now use the SDK in the body of the function
admin.firestore().collection(...).doc(...)
Admin SDK仅包装Cloud Firestore Node SDK,因此请使用其参考来导航API。