改型暂停功能会引发一般错误

时间:2019-06-28 09:38:52

标签: android kotlin retrofit2

我正在尝试使用暂停功能设置Retrofit2,但是在脱机模式下出现意外错误(在联机模式下都很好)。

ApiService:

interface ApiService {
    @GET("v2/153")
    suspend fun fetchData(): Response<DataModel>
}

改装客户端:

fun provideDefaultOkhttpClient(context: Context): OkHttpClient {
    val cacheSize = (5 * 1024 * 1024).toLong()
    return OkHttpClient.Builder()
        .cache(Cache(context.cacheDir, cacheSize))
        .build()
}

fun provideRetrofit(client: OkHttpClient): Retrofit {
    return Retrofit.Builder()
        .client(client)
        .baseUrl(BASE_URL)
        .addConverterFactory(MoshiConverterFactory.create())
        .build()
}

fun provideApiService(retrofit: Retrofit): ApiService =
    retrofit.create(ApiService::class.java)

DataRepository:

class DataRepository(private val api: ApiService) {

    suspend fun getData(): List<DataModel>? {
        val myData = api.fetchData()

        return if (myData.isSuccessful) {
            myData.body()
        } else {
            null
        }
    }
}

在调试应用程序时,我看到DataRepository->api.fetchData()被调用,并且从那里挂起,出现以下错误:

2019-06-28 10:35:46.136 10876-10876/com.myapp.name.debug E/AndroidRuntime: FATAL EXCEPTION: main
    Process: com.myapp.name.debug, PID: 10876

我想念什么?还是我只是错误地使用了暂停功能来检索数据?

0 个答案:

没有答案