收藏
回答

有人写过小程序摇一摇吗!求教!


wx.onAccelerometerChange(function (e) {
       if (e.x > 0.2 && e.y > 0.2) {
           request(api.lootery, 'post', { openid: wx.getStorageSync('openid') }).then((res) => {
               console.log(res)
               that.setData({
                   show: true,
                   message: res.data.Message
               })
           })
       }
   })

现在这种情况摇晃的时候会一直请求接口

最后一次编辑于  2018-04-28
回答关注问题邀请回答
收藏

1 个回答

  • 醉霜林
    醉霜林
    2018-08-02

    你写的,就是有0.2的晃动就请求接口啊

    2018-08-02
    有用
    回复
登录 后发表内容