使用以下代码显示网络图片时提示错误
var self = this;
var urlcon = {id:“http://61.36.72.42/phoneDdService/Image/DownLoadImage.ashx",type:"png”};
cc.loader.load(urlcon, function (err, texture) {
if (err) {
cc.log(err);
}
self.img.spriteFrame = new cc.SpriteFrame(texture);
});
错误信息为
Simulator: Error: Load image failed: http://61.36.72.42/phoneDdService/Image/DownLoadImage.ashx
请问为什么在ie里能显示的图片cocos无法显示,这个图片服务是我写的,有添加支持跨域,也有指定文件类型为 jpg 如果有图片可以显示的麻烦你们发个可以显示的链接给我,或者开发者回复下具体错误为什么下载信息失败


