aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlxmlhttprequest/data/send_data.3.qml
blob: eaf5a057ae1bdddd9882d66e85c29be4c0b97f91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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", "text/plain;charset=latin1");

        // Test to the end
        x.onreadystatechange = function() {
            if (x.readyState == XMLHttpRequest.DONE)
                dataOK = (x.responseText == "QML Rocks!\n");
        }

        x.send("My Sent Data\n");
    }
}