跳入火场。看起来很简单,但已与push()冲突。谢谢你的帮助。
错误:未捕获的类型错误:firebase.database(...)。push不是函数
function submitClick() {
var mainText = document.getElementById("mainText").value;
var mainButton = document.getElementById("mainButton");
// Get a reference to the database service
var database = firebase.database();
// alert(messageText);
firebase.database().push().set(mainText);
}
最佳答案
您可能正在寻找:
firebase.database().ref().push().set(mainText)
push()
方法仅存在于Reference
objects上,而firebase.database()
返回Database
object。关于javascript - 在Firebase中使用push()无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44212219/