blob: bf31eca4efd6749a2e0e301f4703ae4a96ec44f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
import Qt 4.6
QtObject {
property string url
property string header
property bool readyState: false
property bool openedState: false
property bool status: false
property bool statusText: false
property bool responseText: false
property bool responseXML: false
property bool dataOK: false
Component.onCompleted: {
var x = new XMLHttpRequest;
if (x.readyState == XMLHttpRequest.UNSENT)
readyState = true;
x.open("GET", url);
x.setRequestHeader(header, "Value");
if (x.readyState == XMLHttpRequest.OPENED)
openedState = true;
try {
var a = x.status;
} catch (error) {
if (error.code == DOMException.INVALID_STATE_ERR)
status = true;
}
try {
var a = x.statusText;
} catch (error) {
if (error.code == DOMException.INVALID_STATE_ERR)
statusText = true;
}
responseText = (x.responseText == "");
responseXML = (x.responseXML == null);
// Test to the end
x.onreadystatechange = function() {
if (x.readyState == XMLHttpRequest.DONE) {
dataOK = (x.responseText == "QML Rocks!\n");
}
}
x.send()
}
}
|