Arn*_*hra 2 android firebase firebase-realtime-database
我已经阅读了很多相关的stackoverflow问题
ServerValue.TIMESTAMP
Run Code Online (Sandbox Code Playgroud)
但我不知道如何在我的应用程序中使用它。
我需要获取创建帖子的时间戳。时间戳应添加到与 uid 、作者等相同的位置。
将帖子写入firebase 数据库的代码片段:
private void writeNewPost(String userId, String username, String title, String body) {
// Create new post at /user-posts/$userid/$postid and at
// /posts/$postid simultaneously
String key = mDatabase.child("posts").push().getKey();
Post post = new Post(userId, username, title, body);
Map<String, Object> postValues = post.toMap();
Map<String, Object> childUpdates = new HashMap<>();
childUpdates.put("/posts/" + key, postValues);
childUpdates.put("/user-posts/" + userId + "/" + key, postValues);
mDatabase.updateChildren(childUpdates);
}
Run Code Online (Sandbox Code Playgroud)
我的Post.java文件
@IgnoreExtraProperties
public class Post {
public String uid;
public String author;
public String title;
public String body;
public int starCount = 0;
public Map<String, Boolean> stars = new HashMap<>();
public Long timeStamp;
public Post() {
// Default constructor required for calls to DataSnapshot.getValue(Post.class)
}
public Post(String uid, String author, String title, String body) {
this.uid = uid;
this.author = author;
this.title = title;
this.body = body;
}
// [START post_to_map]
@Exclude
public Map<String, Object> toMap() {
HashMap<String, Object> result = new HashMap<>();
result.put("uid", uid);
result.put("author", author);
result.put("title", title);
result.put("body", body);
result.put("starCount", starCount);
result.put("stars", stars);
return result;
}
// [END post_to_map]
Run Code Online (Sandbox Code Playgroud)
}
我应该如何使用
ServerValue.TIMESTAMP
Run Code Online (Sandbox Code Playgroud)
在我的代码中获取创建帖子的时间。
ServerValue.TIMESTAMP只是一个占位符值。当 Firebase 服务器处理更新请求并找到ServerValue.TIMESTAMP一个值时,它会将其替换为当前服务器时钟。
在您的writeNewPost()方法中,您可以添加一行来设置创建时间:
Map<String, Object> postValues = post.toMap();
postValues.put("timeStamp", ServerValue.TIMESTAMP);
Run Code Online (Sandbox Code Playgroud)
如果您Post.toMap()仅用于创建帖子而不用于更新,则可以在其中放置类似的语句而不是 in writeNewPost()。