var xhr = cc.loader.getXMLHttpRequest();
xhr.open("GET", “XXXXXX”, true);
xhr.onreadystatechange = function () {
if (xhr.readyState == 4 && (xhr.status >= 200 && xhr.status <= 207)) {
.............
}
};
xhr.send();
代码如上, 运行在ios9以上系统请求http数据没有进入回调函数怎么回事??