123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- //index.js
- const app = getApp()
- Page({
- data: {
- avatarUrl: './user-unlogin.png',
- userInfo: {},
- hasUserInfo: false,
- logged: false,
- takeSession: false,
- requestResult: '',
- canIUseGetUserProfile: false,
- canIUseOpenData: wx.canIUse('open-data.type.userAvatarUrl') // 如需尝试获取用户信息可改为false
- },
- onLoad: function() {
- if (!wx.cloud) {
- wx.redirectTo({
- url: '../chooseLib/chooseLib',
- })
- return
- }
- if (wx.getUserProfile) {
- this.setData({
- canIUseGetUserProfile: true,
- })
- }
- },
- getUserProfile() {
- // 推荐使用wx.getUserProfile获取用户信息,开发者每次通过该接口获取用户个人信息均需用户确认,开发者妥善保管用户快速填写的头像昵称,避免重复弹窗
- wx.getUserProfile({
- desc: '展示用户信息', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
- success: (res) => {
- this.setData({
- avatarUrl: res.userInfo.avatarUrl,
- userInfo: res.userInfo,
- hasUserInfo: true,
- })
- }
- })
- },
- onGetUserInfo: function(e) {
- if (!this.data.logged && e.detail.userInfo) {
- this.setData({
- logged: true,
- avatarUrl: e.detail.userInfo.avatarUrl,
- userInfo: e.detail.userInfo,
- hasUserInfo: true,
- })
- }
- },
- onGetOpenid: function() {
- // 调用云函数
- wx.cloud.callFunction({
- name: 'login',
- data: {},
- success: res => {
- console.log('[云函数] [login] user openid: ', res.result.openid)
- app.globalData.openid = res.result.openid
- wx.navigateTo({
- url: '../userConsole/userConsole',
- })
- },
- fail: err => {
- console.error('[云函数] [login] 调用失败', err)
- wx.navigateTo({
- url: '../deployFunctions/deployFunctions',
- })
- }
- })
- },
- // 上传图片
- doUpload: function () {
- // 选择图片
- wx.chooseImage({
- count: 1,
- sizeType: ['compressed'],
- sourceType: ['album', 'camera'],
- success: function (res) {
- wx.showLoading({
- title: '上传中',
- })
- const filePath = res.tempFilePaths[0]
-
- // 上传图片
- const cloudPath = `my-image${filePath.match(/\.[^.]+?$/)[0]}`
- wx.cloud.uploadFile({
- cloudPath,
- filePath,
- success: res => {
- console.log('[上传文件] 成功:', res)
- app.globalData.fileID = res.fileID
- app.globalData.cloudPath = cloudPath
- app.globalData.imagePath = filePath
-
- wx.navigateTo({
- url: '../storageConsole/storageConsole'
- })
- },
- fail: e => {
- console.error('[上传文件] 失败:', e)
- wx.showToast({
- icon: 'none',
- title: '上传失败',
- })
- },
- complete: () => {
- wx.hideLoading()
- }
- })
- },
- fail: e => {
- console.error(e)
- }
- })
- },
- })
|