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
static HttpRequest CreateRequest(const std::string& url, const HttpMultipart& multipart, const ResponseCallback& response_cb, const ProgressCallback& progress_cb = ProgressCallback(), const SpeedCallback& speed_cb = SpeedCallback(), const TransferCallback& transfer_cb = TransferCallback());
函数回调函数未使用,在文件phoenix/phoenix/comm/nim_http/wrapper/nim_http.cpp 22行~23中,下面的代码应改:
phoenix/phoenix/comm/nim_http/wrapper/nim_http.cpp
HttpRequest http_request = std::make_shared<CurlHttpRequest>(url, response_cb);
改成
HttpRequest http_request = std::make_shared<CurlHttpRequest>(url, response_cb, progress_cb, speed_cb, transfer_cb);
The text was updated successfully, but these errors were encountered:
此bug导致文件上传没有回调进度
Sorry, something went wrong.
No branches or pull requests
函数回调函数未使用,在文件
phoenix/phoenix/comm/nim_http/wrapper/nim_http.cpp
22行~23中,下面的代码应改:改成
The text was updated successfully, but these errors were encountered: