We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
private static FormBody getRequestParams(RequestVersionBuilder versionParams) { FormBody.Builder builder = new FormBody.Builder(); HttpParams params = versionParams.getRequestParams(); for (Map.Entry<String, Object> entry : params.entrySet()) { builder.add(entry.getKey(), entry.getValue() + ""); ALog.e("params key:" + entry.getKey() + "-----value:" + entry.getValue()); } return builder.build(); } versionParams.getRequestParams()可能为空
The text was updated successfully, but these errors were encountered:
fix issues #295 #293 #290 #288 #281 #256 #264 #267 #284
f4f6f28
c32b76d
a36edeb
No branches or pull requests
private static FormBody getRequestParams(RequestVersionBuilder versionParams) {
FormBody.Builder builder = new FormBody.Builder();
HttpParams params = versionParams.getRequestParams();
for (Map.Entry<String, Object> entry : params.entrySet()) {
builder.add(entry.getKey(), entry.getValue() + "");
ALog.e("params key:" + entry.getKey() + "-----value:" + entry.getValue());
}
return builder.build();
}
versionParams.getRequestParams()可能为空
The text was updated successfully, but these errors were encountered: