Kotlin中的ServerValue.TIMESTAMP Firestore

时间:2018-10-29 10:00:59

标签: android firebase kotlin google-cloud-firestore

我如何在Firestore中的文档中获取当前日期“天时间” 因为我想显示按名称设置或enter image description here设置的照片。 这种方式不起作用

  

科特琳

class Data( var urlList: MutableList<String>,var time: MutableMap<String, String>) {
    constructor() : this(ArrayList(),  ServerValue.TIMESTAMP)
}

1 个答案:

答案 0 :(得分:0)

ServerValue.TIMESTAMP仅与实时数据库一起使用。您需要FieldValue.serverTimestamp()来代替Firestore。