在我的 EmberFire 应用程序中,URL 如下所示:
http://example.com/friends/-Jaxji0depwt4PE8KnFG
有没有办法自定义 Firebase 中的唯一 ID,如下所示:
http://example.com/friends/1
http://example.com/friends/2
http://example.com/friends/3
firebase 中的唯一 id 是在我们推送数据时生成的。
例子:
var messageListRef = new Firebase('https://samplechat.firebaseio.com/friends');
var newMessageRef = messageListRef.push();
newMessageRef.set({ 'name': 'fred', 'email': 'fred@yh.com' });
// We've appended a new message to the message_list location.
var path = newMessageRef.toString();
// path will be something like
// 'https://samplechat.firebaseio.com/friends/-IKo28nwJLH0Nc5XeFmj'
相反,我们可以直接给孩子赋值
例子:
var friendcount = 1;
var myFirebaseRef = new Firebase("https://samplechat.firebaseio.com/friends");
myFirebaseRef.child(""+friendcount).set({'name':'f'+friendcount,'email':'e'+friendcount+'@yh.com'});
friendcount = 2;
myFirebaseRef.child(""+friendcount).set({'name':'f'+friendcount,'email':'e'+friendcount+'@yh.com'});
friendcount = 3;
myFirebaseRef.child(""+friendcount).set({'name':'f'+friendcount,'email':'e'+friendcount+'@yh.com'});
所以,答案是直接在 child 中使用该值
myFirebaseRef.child(1).set({'name':'f1'});
myFirebaseRef.child(2).set({'name':'f2'});
myFirebaseRef.child(3).set({'name':'f3'});