头像列表显示下载头像问题

是用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;
        }
    });![image|56x188](upload://haCGzpOQJ9WcV2NgKVUrxl05yWs.png)![image|56x211](upload://eI5cteXPRxViPN72qM0RfPjvg6j.png) ![image|56x211](upload://eI5cteXPRxViPN72qM0RfPjvg6j.png)

image 所有的头像地址都是随便找的一个相同的url地址只有第一个会显示版本 creator2.41

代码再截多点看看