版本:NuGet的CefSharp.WPF 63.0.3。
我有一个表单,将其发布到_blank。
根据流程的结果,响应将是PDF文件或html网站,显示用户友好的错误消息。
我可以下载pdf文件。 此外,我可以产生一个帖子请求,导致错误信息。
使用LifespanHandler我可以截取弹出窗口创建一个自定义窗口(使用cefsharp.wpf.example) 但是自定义窗口执行get请求(再次显示表单)而不是post请求(显示pdf文件或错误)
我如何检测是否返回了PDF或消息?
答案 0 :(得分:0)
找到适合我的解决方案。
提交表单时,我会将变量(_popupincoming)设置为true。 在IRequesthandler的OnResourceResponse上,我做了类似的事情
public bool OnResourceResponse(IWebBrowser browserControl, IBrowser browser, IFrame frame, IRequest request, IResponse response)
{
// Header will be set if there is a file for download
if (_popupincoming && response.ResponseHeaders.AllKeys.Contains("content-disposition") == false)
{
// Popup still opens but the result will also show in mainwindow
browserControl.GetMainFrame()?.LoadRequest(request);
_nofiledata = true;
// Close Popup
browser.CloseBrowser(true);
}
_popupincoming = false;
return false;
}
在我的主窗口的FrameLoadEnd事件中,我检查_nofiledata
if(_nofiledata)
{
FileLog.Error(getErrorMessage());
Browser.Back(); // Get Back to previous page
_nofiledata = false;
return;
}
这感觉有点不对,但让我从页面中收到错误消息。
对于任何未来的读者,请检查是否有适合此问题的解决方案。