我正在构建一个可以从Cloud Firestore DB中搜索数据的应用程序。所以我在询问如何将所有搜索到的值(即搜索结果)保存到不同的变量(可能是自动生成而不是硬编码的)或类似的东西中。这样它就可以用于其他一些处理而无需重做搜索。我没有尝试过任何东西,因此非常感谢任何解决方案。
我在想类似的东西
private void saveSearchResults(){
// check if the variable storing the search results is empty
if(isEmpty)
saveSearch(variableName)
// save to another variable
else if()
saveSearch(anotherVariableName)
....
//Note: VariableName and anotherVariableName should probably be auto generated.