我想通过使用firebase函数在firebase数据库中保存一个简单的字符串。我正在工作并保存字符串“ THIS NEW CODE”。检索此字符串的最简单方法是什么?
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);
var ref = admin.database().ref("key").set("THIS NEW CODE");
答案 0 :(得分:0)
admin.database().ref("key").once('value').then(snap => {
const string = snap.val()
})
您可能应该熟悉documentation for the Admin SDK。