react字符串拼接(中间部分)

网上看了下好多多是es5写法不是最新的而且都是在末尾追拼接记录下给有需要的童鞋
楼主需要做加载更多所以要在rul中追加一下当前页数

//构造器
constructor(props) {
  super(props);
//当前页
  this.page=1
}

格式为 (“字符串” + this.page + “字符串”);

va r URL =("http://mobile.ximalaya.com/mobile/v1/album/track/ts-1499312754612?albumId=260769&device=iPhone&isAsc=true&pageId=" + this.page + "&pageSize=20&");

你可能感兴趣的:(React,Native)