收藏
回答

IDE绑定数据没有问题,为什么预览出不来数据

IDE:



iphone 6s plus+ios 10.2.1+wx 6.5




求大神,数据是写死的。

回答关注问题邀请回答
收藏

3 个回答

  • 明
    2017-02-09

    ide和真机环境差别也太大了吧

    2017-02-09
    有用
    回复
  • 明
    2017-02-09

    scroll-view里面不能动态加载数据? 换成view就可以了

    2017-02-09
    有用
    回复
  • 明
    2017-02-08

    wxml代码:


      <scroll-view scroll-y="true" >

        <text>111111</text>

        <text>{{supportList.length}}</text>

        <view class = 'item' wx:for='{{supportList}}' wx:key='id'>

          <text>{{item.description}}</text>

        </view>

      </scroll-view>



    js:


    this.setData({

    supportList: [{

            id: 1,

            description: "1",

            thumbnail: ""

          }, {

            id: 2,

            description: "2",

            thumbnail: ""

          }, {

            id: 3,

            description: "3",

            thumbnail: ""

          }]

    });

    2017-02-08
    有用
    回复
登录 后发表内容