我开始使用Firebase,并在传递值时遇到snap =>
:
var rh = document.getElementById('rh');
var dbref = firebase.database().ref('text')
dbref.on('value', snap => rh.innerText = snap.val())
我想了解它的作用和用途。
最佳答案
这只是函数的简单语法。代替:
function f(snap) {
return "hello world";
}
const c = f;
您可以编写以下内容以使其更易于阅读:
const c = snap => return "hello world";
现在,
c
是一个常量,可以保存上面的函数。关于javascript - 我是Firebase的新手,但已经使用Java脚本已有一段时间了,但我不知道snap =>会做什么以及为什么使用它,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51119647/