Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
947 views
in Technique[技术] by (71.8m points)

firebase - Cloud Firestore: How to set a field in document to null

I use a collection of documents that I use to identify user groups. My intention is to only fill in the document id field with the user id without having other useless fields in the documents. But after doing some research, apparently, it's not possible to have empty documents.

So, my question is how to set a (dummy) field in a document to null, which is supposedly supported by Firestore according to the documentation. I'm working on this in both Android and Web, but I suppose code for any platform is OK.

Update: I have confirmed that simply putting null as the field in Web works just fine, however, when I try the equivalent in Android like this:

Map<String, Object> emptyData = new HashMap<>();
emptyData.put("nullField", null);

Android Studio warns me:

Passing 'null' argument to parameter annotated as @NotNull

Should I keep passing null or is there something else I should do?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...