多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
1 读取远程数据示例 ``` <script> var _self = this; export default { data() { return { list:[], art:[] } }, onLoad() { _self = this; this.getNews(); }, methods: { getNews:function(){ uni.request({ url:'http://www.api.io/api/v2.blog/index', success:function(res){ _self.list= res.data.data; } }) } } } </script> ``` 2 列表循环数据 ``` <view> <view v-for="(item,index) in list"> {{item.title}}------{{item.category_id}} </view> </view> ``` 3 数组显示 ``` <view> <view> {{art.title}} </view> </view> ```