标签: retrofit2
在Retrofit 2中,我们必须使用call.enqueue()传递一个回调实现,该实现定义了方式
void onResponse(Call<T> call, Response<T> response);
会工作的。
我相信翻新1中没有call参数,为什么在翻新2中添加了该参数?它是做什么的?
call