How would I write a function to wait for POST to complete? I am logging into a website that has multiple redirects and using connect() with QNetworkReply() leads to infinite GET requests.

I'm using a wait timer right now:

test->sendPostRequest(url, loginData);

    QEventLoop loop;
    QTimer::singleShot(8000, &loop, SLOT(quit()));
    loop.exec();


   test->sendGetRequest(request);
有帮助吗?

解决方案

You can use a local event loop using QEventLoop and connecting the signal finished of your QNetworkAccessManager to the quit slot of QEventLoop. This way when the post is finished, the local event loop quits and the rest gets executed :

QNetworkAccessManager *networkManager = new QNetworkAccessManager(this);

networkManager->post(QNetworkRequest(serviceUrl), postData);


QEventLoop loop;
loop.connect(networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit())); 
loop.exec();

//...

I should not that it's the standard pattern for "blocking wait without blocking the UI".

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top