我从服务器空 json ("{}") 获取代码为 204 的删除响应。
在okhttp3.internal.http.HttpEngine
课堂上有一个令人讨厌的事情被抛出:
if ((code == 204 || code == 205) && response.body().contentLength() > 0) {
throw new ProtocolException(
"HTTP " + code + " had non-zero Content-Length: " + response.body().contentLength());
}
如果您尝试在标头中返回没有内容(服务器端)的内容,但 Content-Length 仍大于 0;
任何非服务器端的想法如何解决这个问题?