我正在将远程数据解析到我的应用程序中并通过参数使用它。其中一种数据类型是我想在 url 中打开的 url 地址。我有一个想法,我必须使用 openURL 函数打开它,但我似乎无法让它工作。有人有一个工作的例子吗?
问问题
54 次
1 回答
0
您必须使用内置的HttpClient
var url = "http://www.you_remote_url.com";
var client = Ti.Network.createHTTPClient({
// function called when the response data is available
onload : function(e) {
Ti.API.info("Received text: " + this.responseText);
alert('success');
},
// function called when an error occurs, including a timeout
onerror : function(e) {
Ti.API.debug(e.error);
alert('error');
},
timeout : 5000 // in milliseconds
});
// Prepare the connection.
client.open("GET", url);
// Send the request.
client.send();
于 2016-06-08T09:21:12.470 回答