function donwLoadHead(node,url){
if (url == null || url == “”) {
return
}
cc.loader.load(url,function (err, texture) {
if (err) {
return;
}
var frame=new cc.SpriteFrame(texture);
node.getComponent(cc.Sprite).spriteFrame=frame;
});
}
data.AvatarUrl = “https://graph.facebook.com/181108336118799/picture?type\u003dlarge”;
cc.mgr.GlobalFunc.donwLoadHead(this[“img_Head”+pos],data.AvatarUrl);//头像
报错如下:Uncaught DOMException: Failed to execute ‘open’ on ‘XMLHttpRequest’: Invalid URL
望大神帮助下