Node.js で Cloud Firestore のデータを読む (Read)
こちらで作成したデータを読みます。
Node.js で Cloud Firestore のデータを作成 (Create)
firestore_read.js
#! /usr/bin/node
// ---------------------------------------------------------------
// firestore_read.js
//
// Jan/25/2020
//
// ---------------------------------------------------------------
console.error ("*** 開始 ***")
const admin = require('firebase-admin')
admin.initializeApp({
credential: admin.credential.applicationDefault()
})
const db = admin.firestore()
db.collection('cities').get()
.then((snapshot) => {
snapshot.forEach((doc) => {
// console.log(doc.id, '=>', doc.data())
var unit_aa = doc.data()
var out_str = doc.id + "\t"
out_str += unit_aa["name"] + "\t"
out_str += unit_aa["population"] + "\t"
out_str += unit_aa["date_mod"]
console.log (out_str)
})
console.error ("*** 終了 ***")
})
.catch((err) => {
console.log('Error getting documents', err);
})
// ---------------------------------------------------------------
実行コマンド
export NODE_PATH=/usr/lib/node_modules
project_id="project-dec16-2020"
echo $project_id
#
export GOOGLE_CLOUD_PROJECT=$project_id
export GOOGLE_APPLICATION_CREDENTIALS="***.json"
./firestore_read.js
次のバージョンで確認しました。
$ node --version
v14.14.0
Author And Source
この問題について(Node.js で Cloud Firestore のデータを読む (Read)), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/bf2a38cfbf92d43eaf10著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .