gpt4 book ai didi

android - ParseQuery 查找对象 null

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:16:16 25 4
gpt4 key购买 nike

我正在使用以下代码搜索我的数据浏览器。列是 LocationWeather,类称为 Nowcast。如果我的 Data Browser 中有纽约并且天气 "sunny",则 TextView showWeather 显示 "The weather in New York是晴天”。但是,如果我搜索 Los Angeles 而它不在 Data Browser 中,它会显示 "The weather in Los Angeles is null" 而它不应输入 if 条件完全根据代码。我做错了什么?

public void getData(){
searchText = searchTextView.getText().toString();
ParseQuery<ParseObject> query = ParseQuery.getQuery("Nowcast");
query.whereEqualTo("Location", searchText);
query.findInBackground(new FindCallback<ParseObject>() {
public void done(List<ParseObject> object, ParseException e) {
if (e == null) {
for (ParseObject weatherObject : object) {
weatherData = weatherObject.getString("Weather");
}
showWeather.setText("The weather in " + searchTextToString + " is " + weatherData);
} else {
Toast.makeText(NowcastSearch.this, "No such location found",Toast.LENGTH_LONG).show();
}
}
});
}

最佳答案

whereas it should not enter the if condition at all according to the code

仅当 ParseException 不为空时才不应输入。换句话说,它不应该仅在您的查询出现问题时才进入 if 条件(它的第一个分支)(例如,您为字段条件传递了错误的类型参数)。

您的查询没有问题。所以没有抛出异常。没有一条记录符合您的条件的查询仍然可以是有效查询。 object 列表是空的,但整个过程没有任何错误。

关于android - ParseQuery 查找对象 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34175147/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com