第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在 Firestore 中獲取服務(wù)器時(shí)間戳?xí)r出錯(cuò)

在 Firestore 中獲取服務(wù)器時(shí)間戳?xí)r出錯(cuò)

慕尼黑8549860 2023-06-14 16:28:16
我正在嘗試在 Cloud Firestore 中添加文檔,但我需要用于timestamp添加文檔的服務(wù)器。文檔已成功添加到集合中,并帶有正確的timestamp. 我正在添加帶有警告對(duì)話(huà)框的文檔。但是當(dāng)我返回到我的活動(dòng)應(yīng)用程序時(shí),它會(huì)因以下錯(cuò)誤而終止:java.lang.RuntimeException: java.lang.reflect.InvocationTargetException ....... E/AndroidRuntime: Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'java.util.Date com.google.firebase 原因: .Timestamp.toDate()' 在 com.sasam.virtuallibrary.Models.UserLight.setTimestamp(UserLight.java:103) 的空對(duì)象引用上為了顯示文檔,我正在使用以下查詢(xún)Query query= FirebaseFirestore.getInstance()                .collection("Users")                .document(user.getUid())                .collection("friends")                .orderBy("timestamp", Query.Direction.DESCENDING);我的課在這里public class UserLight{    protected String name;    protected String email;    protected String uid;    protected Float rating;    protected String photoUrl;    protected long timestamp;    public UserLight(){    }    //other getters and setters    @Exclude    public long getTimestampLong(){        return timestamp;    }    public FieldValue getTimestamp() {        return  FieldValue.serverTimestamp();    }    public void setTimestamp(Timestamp timestamp) {        this.timestamp = timestamp.toDate().getTime();    }}
查看完整描述

1 回答

?
HUH函數(shù)

TA貢獻(xiàn)1836條經(jīng)驗(yàn) 獲得超4個(gè)贊

您的代碼中的問(wèn)題是您的類(lèi)中時(shí)間戳字段的類(lèi)型與數(shù)據(jù)庫(kù)中的屬性UserLight類(lèi)型不匹配。timestamp看,在您的UserLight班級(jí)中,時(shí)間戳字段的類(lèi)型是long,這基本上是一個(gè)數(shù)字,而在數(shù)據(jù)庫(kù)中的類(lèi)型是Dateor?Timestamp。請(qǐng)注意,兩者必須匹配。

因?yàn)樵?Cloud Firestore 中保存日期的正確方法是使用DateorTimestamp類(lèi),要解決這個(gè)問(wèn)題,只需將模型類(lèi)中的時(shí)間戳字段類(lèi)型更改為Date。

查看完整回答
反對(duì) 回復(fù) 2023-06-14
  • 1 回答
  • 0 關(guān)注
  • 198 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)