gpt4 book ai didi

c++ - QNetworkAccessManager 如何检查是否有待处理的请求?

转载 作者:行者123 更新时间:2023-12-03 10:05:55 27 4
gpt4 key购买 nike

在 qt4.8 中,仍然有 qhttp 类,我可以使用 http->hasPendingRequests()检查是否还有待处理的请求。
但是在qt5中,我们被迫使用QNetworkAccessManager类来管理http链接。
我怎么能实现这个检查?

最佳答案

迟到总比不到好,虽然我找不到相关的文档,请尝试以下操作:

QNetworkAccessManager myManager;

// Some requests here...

QList<QNetworkReply *> list =
myManager->findChildren<QNetworkReply *>();

Note that above is only tested with Qt4 and Qt5 (but might be true for coming versions),
And actually, this is how Qt itself finds them for destruction.

关于c++ - QNetworkAccessManager 如何检查是否有待处理的请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28960678/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com