跳转到正文

class QCefQuery

表示从 Web 内容(Javascript)发送的查询请求

总结

成员描述
public QCefQuery()QCefQuery 构造函数
public QCefQuery(const QString & req, const int64_t query)QCefQuery 有参构造函数
public QCefQuery(const QCefQuery & other)QCefQuery 拷贝构造函数
public QCefQuery&operator=(const QCefQuery & other)QCefQuery 拷贝赋值函数
public ~QCefQuery()QCefQuery 析构函数
public const QString request() const获取查询内容
public const qint64 id() const获取查询 ID
public const QString response() const获取响应内容字符串
public const bool result() const获取响应结果
public const int error() const获取响应错误
public void setResponseResult`(bool success, const QString & response, int error) const设置响应
private QScopedPointer< QCefQueryPrivate > d_ptr

Members


public QCefQuery()

QCefQuery 构造函数


public QCefQuery(const QString & req, const int64_t query)

QCefQuery 有参构造函数

参数

  • req 请求上下文

  • query 查询 ID


public QCefQuery(const QCefQuery & other)

QCefQuery 拷贝构造函数

参数

  • other 另一个 QCefQuery 实例

public QCefQuery&operator=(const QCefQuery & other)

QCefQuery 拷贝赋值函数

参数

  • other 另一个 QCefQuery 实例

public ~QCefQuery()

QCefQuery 析构函数


public const QString request() const

获取查询内容

返回值

查询内容


public const qint64 id() const

获取查询 ID

返回值

查询 ID


public const QString response() const

获取响应内容字符串

返回值

响应内容字符串


public const bool result() const

获取响应结果

返回值

响应结果


public const int error() const

获取响应错误

返回值

响应错误


public void setResponseResult(bool success, const QString & response, int error) const

设置响应

参数

  • success 如果查询成功,为 true;否则为 false

  • response 响应内容字符串

  • error 响应错误


private QScopedPointer< QCefQueryPrivate > d_ptr