QtRestClient
3.0.0
A library for generic JSON-based REST-APIs, with a mechanism to map JSON to Qt objects
|
The QML version of QtRestClient::RestReply. More...
#include <qmlrestreply.h>
Public Slots | |
void | addCompletedHandler (const QJSValue &completedHandler) |
Add a method to be called when the request has been completed. More... | |
void | addSucceededHandler (const QJSValue &succeededHandler) |
Add a method to be called when the request has been completed successfully. More... | |
void | addFailedHandler (const QJSValue &failedHandler) |
Add a method to be called if the request has failed. More... | |
void | addErrorHandler (const QJSValue &errorHandler) |
Add a method to be called if an error occured. More... | |
Properties | |
QtRestClient::RestReply | reply |
The original QtRestClient::RestReply that this one wrapps. More... | |
The QML version of QtRestClient::RestReply.
This is a special version that is returned by the RestClass to be able to set handlers. The original reply can be accessed via the RestReply::reply property.
Definition at line 22 of file qmlrestreply.h.
|
slot |
Add a method to be called when the request has been completed.
completedHandler | a JS callback to be called with the reply |
The handlers arguments are:
|
slot |
Add a method to be called if an error occured.
errorHandler | a JS callback to be called with the reply |
The handlers arguments are:
|
slot |
Add a method to be called if the request has failed.
failedHandler | a JS callback to be called with the reply |
The handlers arguments are:
|
slot |
Add a method to be called when the request has been completed successfully.
succeededHandler | a JS callback to be called with the reply |
The handlers arguments are:
QtRestClient::RestReply de::skycoder42::QtRestClient::RestReply::reply |
The original QtRestClient::RestReply that this one wrapps.
Default: auto
Accessors | |
---|---|
MEMBER | reply |
READ ONLY |
Definition at line 40 of file qmlrestreply.h.