时间:2019-05-04 来源:小程序工厂
黄***:
能否看看给下示例代码看看
_***:
js中:
data: { list:[] },onLoad:function(){
let that=this,i=0,list=[];
for(;i<20;i++){
list.push({name: '名称1',id:i}});
}
that.setData({
list:list
})
}
wxml中:
{{ item.name }}
wxss中:
.header{
width: 100%;
background-color: #333;
font-size: 30rpx;
height: 70rpx;
line-height: 70rpx;
position: relative;
color: #fff;
box-sizing: border-box;
}
.sv__container{
width: 100%;
height: 70rpx;
white-space: nowrap;
}
.sv__item{
padding: 0 24rpx;
display: inline-block;
}
微信小程序可以同时运行两个项目吗&微信小程序开发教程