gpt4 book ai didi

java - 我的 Retrofit call.enqueue() 方法被完全跳​​过,不知道为什么

转载 作者:太空宇宙 更新时间:2023-11-04 11:13:41 25 4
gpt4 key购买 nike

我正在使用 Retrofit 的 enqueue() 方法进行调用。我在 MainActivity 的 onCreate() 中调用 refreshImages()refreshImages() 然后调用一个方法 refreshImagesIds(),该方法应该调用 Flickr 的 API 并返回一个 PhotosList 对象,然后我将从那里提取 Photos,其中将包含 Photo 列表 对象。我的问题是,由于某种原因,我的 enqueue() 方法中的 onResponse() 永远不会被调用。当我使用调试器时,它会直接跳过它,当我将 Log 语句放入其中时,它们永远不会被写出。我知道它所访问的端点是正确的,因为我可以使用 OkHttp 的记录器看到它,并且我的 POJO 对于返回的数据来说看起来都是正确的。

知道为什么这不起作用吗?以下是我的 refreshImagesrefreshImagesId。这些都包含在我的 MainAcitivty 中并修改类级别变量。

private void refreshImages() {
// make api call
//imageUrls = FlickrServiceManager_withinterface.getKittenImages(8);

refreshImageIds();

List<Photo> photos = photosList.getPhotos().getPhoto();
imageIds = new ArrayList<String>();
for(Photo photo : photos) {
Log.d("TAG", "It is pringint imageIds: " + photo.getId());
imageIds.add(photo.getId());
}
}

private void refreshImageIds() {
Retrofit retrofit = Api.getRestAdapter();
FlickrServiceInterface flickrService = retrofit.create(FlickrServiceInterface.class);
Call<PhotosList> call = flickrService.getPhotos(API_KEY, FORMAT, "1");
imageIds = new ArrayList<String>();

call.enqueue(new Callback<PhotosList>(){
@Override
public void onResponse(Call<PhotosList> call, Response<PhotosList> response) {
photosList = response.body();
}

@Override
public void onFailure(Call<PhotosList> call, Throwable t) {
// TODO: Clean up
Log.d("TEMP_TAG", "Call failed");
}
});
}

还有我的 FlickrServiceInterface:

public interface FlickrServiceInterface {

@GET("?method=flickr.photos.getSizes")
Call<PhotoSizes> getPhotoSizes(@Query("api_key") String apiKey, @Query("format") String format, @Query("nojsoncallback") String jsonCallback, @Query("photo_id") String photoId);

@GET("?method=flickr.photos.getRecent")
Call<PhotosList> getPhotos(@Query("api_key") String apiKey, @Query("format") String format, @Query("nojsoncallback") String jsonCallback);
}

最佳答案

更改对同步改造 API 的调用:

public static List<String> getImageIds(int size) {
Call<PhotosList> call = flickrService.getPhotos(apiKey, format, "1");
photoIds = new ArrayList<String>();

PhotosList photosList = call.execute().body();
List<Photo> photos = photosList.getPhotos().getPhoto();

for(Photo photo : photos) {
Log.d("TEMP_TAG", "adding photo id to list: " + photo.getId());
photoIds.add(photo.getId());
}
Log.d("TEMP_TAG", "it's getting here too");
return photoIds;
}

请注意,您需要在 AsyncTask 上调用此方法

编辑

您也可以继续使用 enqueue,但您需要提供一个“onFinish” Hook ,以便您知道何时收到数据,然后用数据“通知”客户端:

//interface por communication
public interface ImageIdsCallBack {
public void onFinish( List<String> photoIds );
}

然后就收到这个接口(interface)并发送数据:

public static List<String> getImageIds(int size, final ImageIdsCallBack callback) {
Call<PhotosList> call = flickrService.getPhotos(apiKey, format, "1");
photoIds = new ArrayList<String>();

call.enqueue(new Callback<PhotosList>(){
@Override
public void onResponse(Call<PhotosList> call, Response<PhotosList> response) {
PhotosList photosList = response.body();
List<Photo> photos = photosList.getPhotos().getPhoto();

for(Photo photo : photos) {
Log.d("TEMP_TAG", "adding photo id to list: " + photo.getId());
photoIds.add(photo.getId());
}
//send the data to the caller
callback.onFinish(photoIds);
}

@Override
public void onFailure(Call<PhotosList> call, Throwable t) {
// TODO: Clean up
Log.d("TEMP_TAG", "Call failed");
}
});
Log.d("TEMP_TAG", "it's getting here too");
return photoIds;
}

调用方法:

getImageIds( 50 , new ImageIdsCallBack() {
public void onFinish( List<String> photoIds ) {
//update UI with photoIds
}
} );

我通常使用像 EventBus 这样的库为了方便起见,我强烈推荐给您。

关于java - 我的 Retrofit call.enqueue() 方法被完全跳​​过,不知道为什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45723664/

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