在给定的代码中,我使用了一个标签和一个按钮。我希望当我点击按钮时,必须发送一个请求,该请求从给定链接获取Json并在标签上打印。但对于这段代码,我只是在成功时在标签内打印“OK”
我面临的问题是我没有进入if声明。实际上在按钮上点击没有任何反应。我知道QT中有网络管理员我可以使用,但在我的情况下我想解析QML内部
// Default empty project template
import bb.cascades 1.0
// creates one page with a label
Page {
Container {
layout: StackLayout {}
Label {
id: msgLabel
text: qsTr("Hello World")
textStyle.base: SystemDefaults.TextStyles.BigText
verticalAlignment: VerticalAlignment.Center
horizontalAlignment: HorizontalAlignment.Center
}
Button {
id: requestXML
objectName: "requestXML"
onClicked: {
var doc = new XMLHttpRequest();
doc.onreadystatechange = function() {
if (doc.readyState == 4) {
msgLabel.text="OK"
// pass “doc.responseText” to C++ for Parsing
}
}
doc.open("GET", "http://www.example.com/sample.json", true);
doc.send();
}
}
}
}
在我的.pro文件中,我声明了
CONFIG += qt warn_on cascades10
QT += network
CONFIG += debug
CONFIG += console
LIBS += -lbbdata
QT +=script
QT +=scripttools
我哪里错了?或者我必须声明一些其他的东西
答案 0 :(得分:0)
I don't have access to Twitter API,所以我无法为您正确测试。但这适用于其他JSON文件。对于此示例,您只需要.pro文件中的 LIBS + = -lbbdata 。另请阅读DataSource和JsonDataAccess。如果我是你,我会通过c ++下载JSON。
import bb.cascades 1.0
import bb.data 1.0
Page {
Container {
layout: StackLayout {
}
Label {
id: msgLabel
text: qsTr("Hello World")
textStyle.base: SystemDefaults.TextStyles.BigText
verticalAlignment: VerticalAlignment.Center
horizontalAlignment: HorizontalAlignment.Center
}
Button {
id: requestXML
onClicked: {
dataSource.load();
}
}
attachedObjects: [
DataSource {
id: dataSource
source: "https://api.twitter.com/1.1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name=ladygaga"
type: DataSourceType.Json
onDataLoaded: {
console.log("loaded");
console.log(JSON.stringify(data)); //just for testing
console.log(data);
}
onError: {
console.log(errorType);
console.log(errorMessage);
}
}
]
}
您使用的Twitter API也不再可用,因此请检查REST API v1.1 Resources,否则您将收到以下错误:
{"errors": [{"message": "The Twitter REST API v1 is no longer active. Please migrate to API v1.1. https://dev.twitter.com/docs/api/1.1/overview.", "code": 68}]}
答案 1 :(得分:0)
我认为问题出在跨域请求中,默认情况下不允许这样做。在WebWorks
中,您需要在应用config.xml文件中为您要访问的域声明<access>
元素。
不幸的是,我不知道如何在原生QML
项目中做同样的事情。 bar-descriptor.xml
中的现有元素不允许执行类似的操作。
<强>增加:强>
我写了一个简单的HTTP存根来测试猜测,看起来确实是导致问题的原因:
$ echo -e 'HTTP/1.1 200 OK\n\n' | nc -l 8080
GET /user_timeline.json?include_entities=true&include_rts=true&screen_name=ladygaga HTTP/1.1
CONTENT-TYPE: application/x-www-form-urlencoded
Connection: Keep-Alive
Accept-Encoding: gzip
Accept-Language: en-GB,*
User-Agent: Mozilla/5.0
Host: 192.168.1.106:8080
在这种情况下,我获得XMLHttpRequest.status == 200
,在访问Twitter端点时,我得到XMLHttpRequest.status == 0
相同的代码:
import bb.cascades 1.0
Page {
Container {
layout: StackLayout {
}
Label {
id: msgLabel
text: qsTr("Hello World")
textStyle.base: SystemDefaults.TextStyles.BigText
verticalAlignment: VerticalAlignment.Center
horizontalAlignment: HorizontalAlignment.Center
}
Button {
id: requestXML
objectName: "requestXML"
onClicked: {
sendRequest();
}
}
}
function sendRequest() {
var ajax = new XMLHttpRequest();
ajax.onreadystatechange = function() {
if (ajax.readyState === XMLHttpRequest.DONE) {
console.log("ajax.status: " + ajax.status);
if (ajax.status === 200) {
console.log("Response = " + ajax.responseText);
} else {
// This is very handy for finding out why your web service won't talk to you
console.log("Status: " + ajax.status + ", Status Text: " + ajax.statusText);
}
}
}
// var url = "http://192.168.1.106:8080/user_timeline.json?include_entities=true&include_rts=true&screen_name=ladygaga";
var url = "https://api.twitter.com/1.1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name=ladygaga";
ajax.open("GET", url, true); // only async supported
ajax.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded')
ajax.send();
}
}