- 怎么样获取昨天、明天、或相对距离今天XX天的日期呢?
怎么样获取昨天、明天、或相对距离今天XX天的日期呢?
2017-10-28 - wx.request请求如何判断请求已发出?服务端要返回什么样格式的数据?
wx.request请求获取数据,服务端要返回什么样格式的数据?为什么我在Js里请求获取,但实际上服务器端没收到请求。。。 如何判断请求已发出?服务端要返回什么样格式的数据? Page({ data: { rows: [] }, onLoad: function () { var that = this; //alert("test"); wx.request({ url: 'https://test.com/gr/table_to_json.jsp', data: { sql: 'select user_id,work_date,work_time from user' }, method: 'post', header: { 'content-type': 'application/x-www-form-urlencoded' }, success:function(res) { that.setData({ rows: res.data.rows }) } }) //console.log('onLoad') } })
2017-05-01