是用scrollview 里面头像列表,下载头像,所有的头像用的同一个地址,但是只有第一个头像会显示后面列表并不显示正确内容
cc.assetManager.loadRemote(strHttpHead, {ext: ‘.png’}, (oError, oTexture)=> {
if(oError)
{
cc.loader.loadRes('img_head_failed',cc.SpriteFrame, (err,spriteFrame) => {
if(err == null){
oNode.getComponent(cc.Sprite).spriteFrame = spriteFrame
}
});
}
else
{
let oSpriteTex = new cc.SpriteFrame(oTexture, cc.Rect(0, 0, oTexture.width, oTexture.height));
oNode.getComponent(cc.Sprite).spriteFrame = oSpriteTex;
}
}); 
所有的头像地址都是随便找的一个相同的url地址只有第一个会显示版本 creator2.41