QWebEngineScript Class
The QWebEngineScript class encapsulates a JavaScript program. 更多...
头文件: | #include <QWebEngineScript> |
qmake: | QT += webenginewidgets |
开始支持版本: | Qt 5.5 |
公有类型
enum | InjectionPoint { DocumentCreation, DocumentReady, Deferred } |
enum | ScriptWorldId { MainWorld, ApplicationWorld, UserWorld } |
公有函数
QWebEngineScript() | |
QWebEngineScript(const QWebEngineScript &other) | |
~QWebEngineScript() | |
InjectionPoint | injectionPoint() const |
bool | isNull() const |
QString | name() const |
bool | runsOnSubFrames() const |
void | setInjectionPoint(InjectionPoint p) |
void | setName(const QString &scriptName) |
void | setRunsOnSubFrames(bool on) |
void | setSourceCode(const QString &scriptSource) |
void | setWorldId(quint32 id) |
QString | sourceCode() const |
void | swap(QWebEngineScript &other) |
quint32 | worldId() const |
bool | operator!=(const QWebEngineScript &other) const |
QWebEngineScript & | operator=(const QWebEngineScript &other) |
bool | operator==(const QWebEngineScript &other) const |
详细描述
The QWebEngineScript class encapsulates a JavaScript program.
QWebEngineScript enables the programmatic injection of so called user scripts in the JavaScript engine at different points, determined by injectionPoint(), during the loading of web contents.
Scripts can be executed either in the main JavaScript world, along with the rest of the JavaScript coming from the web contents, or in their own isolated world. While the DOM of the page can be accessed from any world, JavaScript variables of a function defined in one world are not accessible from a different one. ScriptWorldId provides some predefined IDs for this purpose.
The following Greasemonkey attributes are supported since Qt 5.8: @exclude
, @include
, @name
, @match
, and @run-at
.
Use QWebEnginePage::scripts() and QWebEngineProfile::scripts() to access the collection of scripts associated with a single page or a number of pages sharing the same profile.
成员类型
enum QWebEngineScript::InjectionPoint
This enum describes the timing of the script injection:
Constant | Value | Description |
---|---|---|
QWebEngineScript::DocumentCreation | 2 | The script will be executed as soon as the document is created. This is not suitable for any DOM operation. |
QWebEngineScript::DocumentReady | 1 | The script will run as soon as the DOM is ready. This is equivalent to the DOMContentLoaded event firing in JavaScript. |
QWebEngineScript::Deferred | 0 | The script will run when the page load finishes, or 500ms after the document is ready, whichever comes first. |
enum QWebEngineScript::ScriptWorldId
This enum provides pre-defined world IDs for isolating user scripts into different worlds:
Constant | Value | Description |
---|---|---|
QWebEngineScript::MainWorld | 0 | The world used by the page's web contents. It can be useful in order to expose custom functionality to web contents in certain scenarios. |
QWebEngineScript::ApplicationWorld | 1 | The default isolated world used for application level functionality implemented in JavaScript. |
QWebEngineScript::UserWorld | 2 | The first isolated world to be used by scripts set by users if the application is not making use of more worlds. As a rule of thumb, if that functionality is exposed to the application users, each individual script should probably get its own isolated world. |
成员函数
QWebEngineScript::QWebEngineScript()
Constructs a null script.
QWebEngineScript::QWebEngineScript(const QWebEngineScript &other)
Constructs a user script using the contents of other.
QWebEngineScript::~QWebEngineScript()
Destroys a script.
InjectionPoint QWebEngineScript::injectionPoint() const
Returns the point in the loading process at which the script will be executed. The default value is QWebEngineScript::Deferred.
参见 setInjectionPoint().
bool QWebEngineScript::isNull() const
Returns true
is the script is null; otherwise returns false
.
QString QWebEngineScript::name() const
Returns the name of the script. Can be useful to retrieve a particular script from a QWebEngineScriptCollection.
参见 setName(), QWebEngineScriptCollection::findScript(), and QWebEngineScriptCollection::findScripts().
bool QWebEngineScript::runsOnSubFrames() const
Returns true
if the script is executed on every frame in the page, or false
if it is only ran for the main frame.
参见 setRunsOnSubFrames().
void QWebEngineScript::setInjectionPoint(InjectionPoint p)
Sets the point at which to execute the script to be p.
参见 injectionPoint() and InjectionPoint.
void QWebEngineScript::setName(const QString &scriptName)
Sets the script name to scriptName.
参见 name().
void QWebEngineScript::setRunsOnSubFrames(bool on)
Executes the script on sub frames in addition to the main frame if on returns true
.
参见 runsOnSubFrames().
void QWebEngineScript::setSourceCode(const QString &scriptSource)
Sets the script source to scriptSource.
参见 sourceCode().
void QWebEngineScript::setWorldId(quint32 id)
Sets the world ID of the isolated world to id when running this script.
参见 worldId().
QString QWebEngineScript::sourceCode() const
Returns the source of the script.
参见 setSourceCode().
void QWebEngineScript::swap(QWebEngineScript &other)
Swaps the contents of the script with the contents of other.
quint32 QWebEngineScript::worldId() const
Returns the world ID defining which world the script is executed in.
参见 setWorldId().
bool QWebEngineScript::operator!=(const QWebEngineScript &other) const
Returns true
if the script is not equal to other, otherwise returns false
.
QWebEngineScript &QWebEngineScript::operator=(const QWebEngineScript &other)
Assigns other to the script.
bool QWebEngineScript::operator==(const QWebEngineScript &other) const
Returns true
if the script is equal to other, otherwise returns false
.