微信小程序 js中遍历list

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/yechaoa/article/details/82155518

wxml 遍历用 wx:for

js:

for (var index in res.data) {
    title : res.data[index].title
 }

res.data是数组,index是下标


猜你喜欢

转载自blog.csdn.net/yechaoa/article/details/82155518