收藏
回答

wx:for问题

框架类型 问题类型 终端类型 AppID 基础库版本
小程序 Bug 客户端 wx4f5c8b52f56324a6 2.3.3

<!--页面代码-->

<view class='container'>

{{queryResult}}

</view>

<view wx:for='{{queryResult}}'>

{{item.imgUrl}}  <!--这里拿不到数据-->

</view>


//显示的不对啊



//数据已经返回



//js代码

const app = getApp()

Page({


/**

  * 页面的初始数据

  */

data: {

queryResult: '',

},


/**

  * 生命周期函数--监听页面加载

  */

onLoad: function (options) {

this.onQuery()

},




onQuery: function () {

const db = wx.cloud.database()

db.collection('redCultureList').get({

success: res => {

this.setData({

queryResult: JSON.stringify(res.data, null, 2)

})

console.log('[数据库] [查询记录] 成功: ', res)

},

fail: err => {

wx.showToast({

icon: 'none',

title: '查询记录失败'

})

console.error('[数据库] [查询记录] 失败:', err)

}

})

}




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

1 个回答

  • zhcode🌱
    zhcode🌱
    2018-09-12

    JSON.stringify 返回的是字符串,不是数组

    2018-09-12
    有用 2
    回复 1
    • 2018-09-12

      ...

      ...

      ...

      2018-09-12
      回复
登录 后发表内容