有什么方法可以找出我的数据何时使用push()方法保存在数据库中?我写了下面的代码,但它多次保存数据......
000?
00?1
0?11
?111
答案 0 :(得分:5)
如果我没错,push()回调应该是这样的:
db.ref('news').push(opts, function(error) {
if (error)
console.log('Error has occured during saving process')
else
console.log("Data hss been saved succesfully")
})