21 lines
493 B
QML
21 lines
493 B
QML
import QtQuick 2.0
|
|
|
|
QtObject {
|
|
property string url
|
|
property bool dataOK: false
|
|
|
|
Component.onCompleted: {
|
|
var x = new XMLHttpRequest;
|
|
x.open("POST", url);
|
|
x.setRequestHeader("Content-Type", "charset=UTF-8;text/plain");
|
|
|
|
// Test to the end
|
|
x.onreadystatechange = function() {
|
|
if (x.readyState == XMLHttpRequest.DONE)
|
|
dataOK = (x.responseText == "QML Rocks!\n");
|
|
}
|
|
|
|
x.send("My Sent Data\n");
|
|
}
|
|
}
|