小程序-API请求

        Page({
            onl oad:function(){
                // 在onLoad中调用发送请求的函数
                this.getProList();
            }

            getProList:function(){
                var self=this;
                // 在这里向服务端发送请求
                wx.request({
                    url:"",
                    method:"GET",
                    success:function(res){
                        // 数据的赋值写在setData()方法里
                        self.setData({
                            proList:res.data
                        })
                    }
                })
            }
        })
上一篇:基于单片机粮仓温度远程采集传送系统设计-毕设资料


下一篇:微信小程序setData复杂数组的更新、删除、添加、拼接