其中哪一个更快?或者没有区别?
选项1
const rootRef = new Firebase(process.env.FIREBASE_URL)
const absolutePath1 = '/foo/bar/hello'
const absolutePath2 = '/foo/bar/yoda'
rootRef.child(absolutePath1).update(...)
rootRef.child(absolutePath2).update(...)
选项2
// ref points to '/foo/bar'
ref.child('hello').update(...)
ref.child('yoda').update(...)
答案 0 :(得分:4)
相对于另一个URI计算的相对路径。但绝对的道路不是。性能或效率没有任何重要意义。