以下成员源于类 QWebEngineDownloadItem 已过时。 提供它们是为使旧源代码能继续工作。强烈建议不要在新代码中使用它们。
(obsolete)
enum
|
DownloadType { Attachment, DownloadAttribute, UserRequested, SavePage } |
(obsolete)
QString
|
path () const |
(obsolete)
void
|
setPath (QString path ) |
(obsolete)
QWebEngineDownloadItem::DownloadType
|
type () const |
This enum is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.
描述请求下载的类型。
常量 | 值 | 描述 |
---|---|---|
QWebEngineDownloadItem::Attachment
|
0
|
Web 服务器的响应包括
Content-Disposition
头具有
attachment
指令。若
Content-Disposition
存在于回复中,Web 服务器指示客户端应该提示用户保存内容,不管内容类型。见
RFC 2616 第 19.5.1 节
了解细节。
|
QWebEngineDownloadItem::DownloadAttribute
|
1
|
用户点击的链接具有
download
属性。
|
QWebEngineDownloadItem::UserRequested
|
2
|
用户初启下载,例如通过选择 Web 操作。 |
QWebEngineDownloadItem::SavePage
|
3
|
请求保存当前页面 (例如通过 QWebEnginePage::SavePage Web 动作)。 |
该枚举在 Qt 5.8 引入或被修改。
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
使用 suggestedFileName (), downloadDirectory (),和 downloadFileName () 代替。
Returns the full target path where data is being downloaded to.
The path includes the file name. The default suggested path is the standard download location and file name is deduced not to overwrite already existing files.
另请参阅 setPath ().
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
使用 setDownloadDirectory () 和 setDownloadFileName () 代替。
Sets the full target path to download the file to.
The path should also include the file name. The download path can only be set in response to the QWebEngineProfile::downloadRequested () 信号在接受下载前。此后,此函数对下载项状态不起作用。
另请参阅 path ().
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
Returns the requested download's type.
注意:
This property works unreliably, except for
SavePage
downloads. Use
isSavePageDownload
() 代替。
该函数在 Qt 5.8 引入。