我正在嘗試將新文檔和集合添加到我的數(shù)據(jù)庫(kù)中。我知道我可以只添加一個(gè)文檔,如果不存在應(yīng)該添加的集合。我的問(wèn)題是:如何將空文檔添加到數(shù)據(jù)庫(kù)中的新集合中?我試過(guò)這段代碼,來(lái)自 android 開(kāi)發(fā)者網(wǎng)站:ApiFuture<WriteResult> future = db.collection("cities").document("LA");// ...// future.get() blocks on responseSystem.out.println("Update time : " + future.get().getUpdateTime());但它給了我無(wú)法解決的 ApiFuture 部分錯(cuò)誤。所以我嘗試了這個(gè):db.collection(mail).document("tarefa");(郵件是一個(gè)字符串)但是它不起作用。有誰(shuí)知道我應(yīng)該怎么做?
將空文檔添加到集合
大話(huà)西游666
2022-12-28 10:03:20