我有这样的结构:
public final class Identifier implements Comparable<Identifier> {
...
}
我的firebase存储和数据库基本相同,我试图允许用户更改用户名,并在此处的路径中更新{
AllUsers: {
76f4bd92-1fcd-4b4d-86c5-66b7e2822def: {
Users Username: { //change the name here
-LCdF2QJ5c46lRnndtmY: {
count: 1,
dateTime: 1526479204163,
name: "picture1",
url: "https://firebasestorage.googleapis.com/",
},
-LCdF2QJ5c46lRnndtmQ: {
count: 2,
dateTime: 1526479204163,
name: "picture2",
url: "https://firebasestorage.googleapis.com/",
}
}
}
}
}
我尝试了类似的一些事情:
Users Username
但它没有更新。任何人都可以帮忙,我觉得我错过了一些重要的事情。