OkHttpTask.java 第115行 method应该是patch,不是put case PATCH: RequestBody bodyPatch = params.getRequestBody(); if (bodyPatch != null) { builder.**put**(new ProgressRequestBody(bodyPatch, this)); } break;
OkHttpTask.java 第115行 method应该是patch,不是put
case PATCH:
RequestBody bodyPatch = params.getRequestBody();
if (bodyPatch != null) {
builder.put(new ProgressRequestBody(bodyPatch, this));
}
break;