小程序app.js
app.js
1 import { 2 ApiUrl 3 } from \'utils/apiurl.js\'; 4 import { 5 httpReq 6 } from \'utils/http.js\'; 7 /*以上两个文件为封装的请求数据的接口,文件内容我会放在最后,不用这俩文件的可以安装wx.request(微信开发文档提供方法来请求),这两个文件也是在原方法上做了改动但效果一样的, 8 */ 9 App({ 10 onLaunch: function () { 11 var logs = wx.getStorageSync(\'logs\') || []// 12 logs.unshift(Date.now()) 13 /*unshift() 方法将把它的参数插入 arrayObject 的头部,并将已经存在的元素顺次地移到较高的下标处,以便留出空间。该方法的第一个参数将成为数组的新元素 0,如果还有第二个参数,它将成为新的元素 1,以此类推。 14 */ 15 wx.setStorageSync(\'logs\', logs)// 根据时间存储log 16 17 // 登录 18 wx.login({ 19 success: res => { 20 /* 发送 res.code 到后台换取 token,openId, sessionKey, unionId(都可以获取,和后端商议选择其中需要的获取并使用) 21 */ 22 if(res.code) { 23 //发起网络请求 24 httpReq({ 25 header: { 26 //此处为示例header内容,写自己项目的即可 27 \'Content-Type\': \'application/json\', 28 \'Accept\': \'application/json\' 29 }, 30 method: \'GET\', 31 /* url: \'https://api.weixin.qq.com/sns/jscode2session?appid=wxf7a9fda47682a9a6&secret=cc74bba5adfa5e077038c5cb8baca13c&js_code=\'+ res.code+\'&grant_type=authorization_code\' 32 */ 33 url: ApiUrl.phplist + \'index/gettoken?code=\' + res.code, 34 /*上面第一个url为前端直接绕过后端去微信请求拿到openid和session_key,主要是当时拿不到数据和后端争论故自己直接拿证明自己前端没有错,你们还是正常用下面的后端请求到的就可以了。 35 */ 36 }).then((res) =>{ 37 wx.setStorageSync(res.data.lists.token) 38 /*此处后端要求我们拿token在其他页面使用说是为了安全,他的意思是说我刚刚自己绕过他去微信那边直接拿了openid和session_key不安全,我?????,只能现在按他的做了,其他页面需要openid时再传给他token换取。 39 */ 40 }) 41 } else { 42 console.log(\'登录失败\' + res.errMsg) 43 } 44 } 45 }) 46 47 // 获取用户信息 48 wx.getSetting({ 49 success: res => { 50 if (res.authSetting[\'scope.userInfo\']) { 51 // 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框 52 wx.getUserInfo({ 53 success: res => { 54 this.globalData.userInfo = res.userInfo 55 56 /*此处是可以直接获取到你微信个人账号信息的,就是图像,昵称,性别,省份,城市等之类的,如果是电话,具体地址等私密信息是要额外授权才能获取的,由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回. 57 所以此处加入 callback 以防止这种情况*/ 58 if (this.userInfoReadyCallback) { 59 this.userInfoReadyCallback(res) 60 } 61 }, 62 fail: function(res) {} 63 }) 64 } else { 65 wx.showModal({ 66 title: \'警告通知\', 67 content: \'您点击了拒绝授权,将无法正常显示个人信息,在设置中确定重新获取授权。\', 68 }) 69 } 70 }, 71 fail: function(res) {} 72 }) 73 }, 74 globalData: { 75 userInfo: null, 76 } 77 })
apiurl.js
1 let ApiUrl = {}; 2 // php列表 3 ApiUrl.phplist = \'http://www.ylb.com/api/\'; 4 5 // 详细信息 6 ApiUrl.detail = ApiUrl.phplist+\'/\'; 7 8 export {ApiUrl};
http.js
1 function httpReq(params = {}){ 2 let url = params.url || \'http://www.ylb.com\'; 3 let data = params.data || \'\'; 4 let header = params.header || {}; 5 let method = params.method || \'GET\'; 6 7 // 使用Promise来解决异步问题 8 return new Promise((resolve, reject) => { 9 // 发起网络请求 10 wx.request({ 11 url, 12 data, 13 header, 14 method, 15 16 // 成功 17 success: resolve, 18 19 // 失败 20 fail: reject 21 }) 22 }) 23 } 24 // 导出模块 25 export {httpReq};
以上仅为小女子做项目时的一些理解与记录,初次接触小程序,仅供大家参考,欢迎各位大佬指正,代码各种问题都可以留言联系我,你主动,我们才有故事。