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
当匹配到这样的url的时候 //fundact.eastmoney.com/banner/Hot_Em.html?spm=xlb
public Response metaRefresh(String nextUrl) throws Exception { if (!nextUrl.startsWith("http")) { String prefix = this.getRealUrl(this.httpContext); nextUrl = prefix + nextUrl; }
this.logger.info("Seimi refresh url to={} from={}", nextUrl, this.currentReqBuilder.getUri()); this.currentReqBuilder.setUri(nextUrl); this.httpResponse = this.hc.execute(this.currentReqBuilder.build(), this.httpContext); return this.renderResponse(this.httpResponse, this.currentRequest, this.httpContext); }
这里的拼接就有问题了
The text was updated successfully, but these errors were encountered:
欢迎提交经过充分测试的PR
Sorry, something went wrong.
No branches or pull requests
当匹配到这样的url的时候 //fundact.eastmoney.com/banner/Hot_Em.html?spm=xlb
public Response metaRefresh(String nextUrl) throws Exception {
if (!nextUrl.startsWith("http")) {
String prefix = this.getRealUrl(this.httpContext);
nextUrl = prefix + nextUrl;
}
这里的拼接就有问题了
The text was updated successfully, but these errors were encountered: