【发布时间】:2014-01-31 13:05:34
【问题描述】:
我正在发出 HTTP 请求并为我的应用数据提取 JSON 结构。我使用了 Alloy 文档中的代码,其中包含一行输出整个响应文本以进行调试的行。这会影响应用在运行时的整体性能吗?
var xhr = Ti.Network.createHTTPClient({
onload: function(e) {
Ti.API.debug(this.responseText);
// rest of function...
}
});
【问题讨论】:
标签: javascript titanium httprequest appcelerator titanium-alloy