12345678910111213141516171819202122232425262728 |
- // app.js
- App({
- onLaunch() {
- // 展示本地存储能力
- const logs = wx.getStorageSync('logs') || []
- logs.unshift(Date.now())
- wx.setStorageSync('logs', logs)
- // 登录
- wx.login({
- success: res => {
- console.log("code: "+res.code);
- wx.request({
- url: 'http://192.168.31.28:8084/user/login',
- method:'POST',
- data:{
- code : res.code,
- Appid: 'wxc25f00d0fc026ae7',
- AppSecret: '9e94011d65b0f4307b1cab14022ea060'
- }
- })
- }
- })
- },
- globalData: {
- userInfo: null
- }
- })
|