Javascript不使用QWebView cookie / session

时间:2014-10-12 12:34:12

标签: javascript qt cookies qwebview

我目前正在尝试开发一个基本的浏览器网站,以便使用qt框架在特定的互联网网站上冲浪。我创建了一个继承QWebView的MyWindow类,以便在新的浏览器窗口中处理潜在弹出窗口的打开。在这个MyWindow类中,我还重新创建了createWindow函数。此外,我还在MyWindow类中创建了QNetworkAccessManager和QNetworkCookieJar对象,而无需重新创建任何进一步的新功能。我认为这足以在我所定位的网站上浏览,因为它在其主页上有一个登录表单,而您可以使用服务器生成的cookie中包含的信息在同一站点的其他页面上浏览登录。它在“正常”导航期间运行良好,而在点击

等链接时总是会出错
<a class="lien_default lienPerso" href="javascript:popupPerso('foo.php?login=bar')">bar</a>

在这种情况下,会提示一个新窗口(我发现javascript函数是一个简单的window.open),但它似乎无法从cookie中检索信息:当前会话未被使用,新窗口要求记录 - 再次。只有在此弹出窗口中登录后,我才能浏览正确的链接页面。我当然的意图是使用每个当前会话的信息来访问该链接的信息。而这种行为(即没有第二次登录请求)实际上是您使用标准浏览器浏览此网页时获得的。 我还发现由于javascript代码,链接点击信号不会处理这些链接。

请在我的代码下找到:

main.cpp

#include <QApplication>
#include "mainwindow.h"


int main(int argc, char *argv[])
{
   QApplication a(argc, argv);
   MainWindow mWind;
   mWind.show();


   return a.exec();
}

mywindow.cpp

#include <QWebView>
#include "mywindow.h"

    MyWindow::MyWindow (QWidget * parent):QWebView(parent)
    {


    }

    QWebView *MyWindow::createWindow(QWebPage::WebWindowType type)
    {
        Q_UNUSED(type);
        QWebView *webView = new QWebView;
        QWebPage *newWeb = new QWebPage(webView);
        webView->setAttribute(Qt::WA_DeleteOnClose, true);
        webView->setPage(newWeb);

        return webView;
    }

mainwindow.cpp

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "mywindow.h"
#include <QWebView>
#include <QWebFrame>
#include <QNetworkAccessManager>
#include <QNetworkCookieJar>


MainWindow::MainWindow(QWidget *parent) :
   QMainWindow(parent),
   ui(new Ui::MainWindow)

{
    QUrl url([url of the website I was targeting]);



    ui->setupUi(this);
    QWebSettings *settings = ui->w->settings();                   // w is an object of MyWindow class that i promoted in Design Panel
    settings->setAttribute(QWebSettings::JavascriptEnabled, true);
    settings->setAttribute(QWebSettings::PluginsEnabled, true);
    settings->setAttribute(QWebSettings::AutoLoadImages, true);
    settings->setAttribute(QWebSettings::JavaEnabled, false);
    settings->setAttribute(QWebSettings::JavascriptCanOpenWindows, true);
    ui->w->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks);  // This was a test on links

    QNetworkCookieJar* cookieJar = new QNetworkCookieJar();
    QNetworkAccessManager* nam = new QNetworkAccessManager(this);
    nam->setCookieJar(cookieJar);


    ui->w->page()->setNetworkAccessManager(nam);  
    ui->w->load(url);
    ui->w->show();
    net=nam;

    connect(ui->w,SIGNAL(linkClicked(QUrl)),this,SLOT(openUrl(QUrl)));


}

MainWindow::~MainWindow()
{
    delete ui;
}

void MainWindow::openUrl(QUrl url)
{

    QWebView *n = ui->w->createWindow(QWebPage::WebBrowserWindow);
    n->page()->setNetworkAccessManager(net);
    n->load(url);
    n->show();

}

谢谢

Hicarus

1 个答案:

答案 0 :(得分:1)

MyWindow::createWindow中创建的页面似乎没有设置它可以从中获取cookie的networkAccessManager,尝试类似:

QWebPage *newWeb = new QWebPage(webView);
newWeb->setNetworkAccessManager(page()->networkAccessManager());

另一种选择是创建QWebPage的子类,您可以在其中执行此逻辑而不是在多个位置执行此操作,并从createWindow返回此类对象。