原因为OkHttp请求回调中response.body().string()只能有效调用一次,而我使用了两次:
Log.e("test", "onResponse - " + response.body().string() ); String result = response.body().string();
由于上面的LOG使用了一次,底下的取值又使用了一次
原因为OkHttp请求回调中response.body().string()只能有效调用一次,而我使用了两次:
Log.e("test", "onResponse - " + response.body().string() ); String result = response.body().string();
由于上面的LOG使用了一次,底下的取值又使用了一次