1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- //index.js
- var server = require('../../libs/config.js');
- //获取应用实例
- var app = getApp()
- Page({
- data: {
- userInfo:{},
- items:''
- },
- bindViewTap: function(e){
- wx.navigateTo({
- url: '../login/index'
- })
- },
- onLoad:function(){
-
- if (app.globalData.userInfo) {
- this.setData({
- userInfo: app.globalData.userInfo,
- hasUserInfo: true
- })
- } else if (this.data.canIUse) {
- // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
- // 所以此处加入 callback 以防止这种情况
- app.userInfoReadyCallback = res => {
- this.setData({
- userInfo: res.userInfo,
- hasUserInfo: true
- })
- }
- } else {
- // 在没有 open-type=getUserInfo 版本的兼容处理
- wx.getUserInfo({
- success: res => {
- app.globalData.userInfo = res.userInfo
- this.setData({
- userInfo: res.userInfo,
- hasUserInfo: true
- })
- }
- })
- }
-
-
- wx.request({
- url: server.Server.url + '/api/user/getUserInfo/' + app.globalData.nwUserid,
- // url:'http://map.sogou.com/api/',
- method:'GET',
- data:{},
- header:{
- 'Accept':'application/json'
- },
- success:(res) => {
- console.log(res);
- this.setData({
- items: res.data
- })
- }
- })
- }
- })
|