收藏
回答

怎样把request从服务器读取的返回显示在页面上?wxml怎样写?

//index.js
//获取应用实例
const app = getApp()


Page({
  
  sxbut:function () {
       var that = this;
    //读取数据库
    wx.request({
      url: 'http://xxxxxx/xxxx.php',
      method: 'GET',
      data: {
        nname: 'jack'
      },
      header: {
        'content-Type''application/json'
      },
      success(res) {
        console.log(res),
        console.log(res.data),
           that.setData({
            List: res.data,
          });
      }
    });
 }

})
--------------------------------------------------------------------------------------
print:res.data显示:
Array
(
    [0] => Array
        (
            [0] => jack
            [name] => jack
            [1] => 30
            [age] => 30
            [2] => 男
            [xinbie] => 男
        )


)
------------------------------------------------
wxml怎样写?让name,age,xinbie显示出来


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

1 个回答

登录 后发表内容
问题标签