微信小程序开发——填坑之旅(1)

(1)scroll-view 采用 flex是不起作用的,建议在 scroll-view里再套一层view,对这个view采用flex
(2)研究网络请求(需要传递参数的请求)花了两天,只能说实现了,但不是完美的方法
js逻辑请求页面代码:

  onLoad:function(options){ 
    console.log("上一页传过来不的id=="+options.id);
    var that = this;
    wx.request({ 
        url: 'https://xxxxx/search',  
      data:{
        json: '{"pagination":{"limit":6,"pageNo":1},"filter":{"keywords":"","sort_by":"","brand_id":"","car_type_id":"","category_id":'+options.id+',"properties":{}}}'
        },
      method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT 
      success: function(res){  
         console.log("请求成功,获得返回数据 ! "+res.data.paginated.total); 
        that.setData({
          goodList:res.data.data,
        })
      },
      fail: function() { 
      },
      complete: function() {       }
    })
  },

(3)待动态化参数上传

你可能感兴趣的:(微信小程序)