Html5 开发列表之push方法

//加载更多
function GetMoreList(ArticleList,that,nid,cIdx,cType,mType,pageIndex,pageSize,isFound)
{
    apiArticle.getPageArticleList(nid,cIdx,cType,mType,pageIndex,pageSize,isFound,function(res)
    {
      for(var i in res.data.ArticleList)
      {
        ArticleList.push(res.data.ArticleList[i]);
      }
    //填充数据
    that.setData({  
        ArticleList:util.getArticleListImgSrc(ArticleList) 
      })
  })

}

以上是记一次 微信小程序列表加载更多用到的push()方法, 如果push的数组越来越多,会出现内存不够用的情况么,有大神看到的话可以指点下


已经在老大的带领下,简单开发出了微信小程序的初始版本 "前方News" 欢迎大家添加,用到wxparse 加载html标签  顺利的解决掉了 开发列表下拉刷新和上拉加载的问题,有需要咨询的小伙伴儿可以加我的企鹅号 809178958,共同探讨, 如果解决了问题 是土豪的话可以打赏下哦,金额任意

你可能感兴趣的:(小程序,html5,微信,加载更多,上拉)