master
13285100733@qq.com 2 years ago
parent 21b40c1e5f
commit 57fb48c63a

@ -30,6 +30,11 @@ Page({
wx.setStorageSync('avatarUrl', avatarUrl) wx.setStorageSync('avatarUrl', avatarUrl)
wx.setStorageSync('nickName', nickName) wx.setStorageSync('nickName', nickName)
console.log('成功',res) console.log('成功',res)
wx.cloud.database().collection('user').where({
nickName:nickName
}).get().then(res => {
if (!res.data.length) {
// 没有存在同样的内容
wx.cloud.database().collection('user').add({ wx.cloud.database().collection('user').add({
data: { data: {
userInfo:user, userInfo:user,
@ -37,8 +42,19 @@ Page({
nickName:user.nickName nickName:user.nickName
} }
}) })
}, }
fall:res=>{ else{
console.log('该用户已存在')
}
})
// wx.cloud.database().collection('user').add({
// data: {
// userInfo:user,
// avatarUrl:user.avatarUrl,
// nickName:user.nickName
// }
// })
},fall:res=>{
console.log('失败',res) console.log('失败',res)
} }
}) })

@ -7,63 +7,76 @@ Page({
* 页面的初始数据 * 页面的初始数据
*/ */
data: { data: {
userInfo: {}, avatarUrl:'',
//判断小程序的API回调参数组件等是否在当前版本可用。 nickName:'',
canIUse: wx.canIUse('button.open-type.getUserInfo'), userInfo:{}
isHide: false, // userInfo: {},
// //判断小程序的API回调参数组件等是否在当前版本可用。
// canIUse: wx.canIUse('button.open-type.getUserInfo'),
// isHide: false,
}, },
//事件处理函数 //事件处理函数
bindViewTap: function() { bindViewTap: function() {
wx.navigateTo({ // wx.navigateTo({
url: '../logs/logs' // url: '../logs/logs'
}) // })
}, },
/** /**
* 生命周期函数--监听页面加载 * 生命周期函数--监听页面加载
*/ */
onLoad: function() { onLoad: function() {
var that = this;
// 查看是否授权 this.setData({
wx.getSetting({ userInfo:wx.getStorageSync('user'),
success: function(res) { avatarUrl:wx.getStorageSync('avatarUrl'),
if (res.authSetting['scope.userInfo']) { nickName:wx.getStorageSync('nickName')
wx.getUserInfo({
success: function(res) {
app.globalData.userInfo = res.userInfo
that.setData({
userInfo: res.userInfo,
}) })
// 用户已经授权过,不需要显示授权页面,所以不需要改变 isHide 的值
// 根据自己的需求有其他操作再补充 console.log(avatarUrl)
// 我这里实现的是在用户授权成功后,调用微信的 wx.login 接口从而获取code
wx.login({ console.log(nickName)
success: res => {
// 获取到用户的 code 之后res.code // 查看是否授权
// console.log("用户的code:" + res.code); // wx.getSetting({
// 可以传给后台,再经过解析获取用户的 openid // success: function(res) {
// 或者可以直接使用微信的提供的接口直接获取 openid ,方法如下: // if (res.authSetting['scope.userInfo']) {
// wx.request({ // wx.getUserInfo({
// // 自行补上自己的 APPID 和 SECRET // success: function(res) {
// url: 'https://api.weixin.qq.com/sns/jscode2session?appid=自己的APPID&secret=自己的SECRET&js_code=' + res.code + '&grant_type=authorization_code', // app.globalData.userInfo = res.userInfo
// that.setData({
// userInfo: res.userInfo,
// })
// // 用户已经授权过,不需要显示授权页面,所以不需要改变 isHide 的值
// // 根据自己的需求有其他操作再补充
// // 我这里实现的是在用户授权成功后,调用微信的 wx.login 接口从而获取code
// wx.login({
// success: res => { // success: res => {
// // 获取到用户的 openid // // 获取到用户的 code 之后res.code
// console.log("用户的openid:" + res.data.openid); // // console.log("用户的code:" + res.code);
// // 可以传给后台,再经过解析获取用户的 openid
// // 或者可以直接使用微信的提供的接口直接获取 openid ,方法如下:
// // wx.request({
// // // 自行补上自己的 APPID 和 SECRET
// // url: 'https://api.weixin.qq.com/sns/jscode2session?appid=自己的APPID&secret=自己的SECRET&js_code=' + res.code + '&grant_type=authorization_code',
// // success: res => {
// // // 获取到用户的 openid
// // console.log("用户的openid:" + res.data.openid);
// // }
// // });
// }
// });
// }
// });
// } else {
// // 用户没有授权
// // 改变 isHide 的值,显示授权页面
// that.setData({
// isHide: true
// });
// }
// } // }
// }); // });
}
});
}
});
} else {
// 用户没有授权
// 改变 isHide 的值,显示授权页面
that.setData({
isHide: true
});
}
}
});
}, },
bindGetUserInfo: function(e) { bindGetUserInfo: function(e) {

@ -2,6 +2,8 @@
<view wx:if="{{isHide}}"> <view wx:if="{{isHide}}">
<view wx:if="{{canIUse}}"> <view wx:if="{{canIUse}}">
<view class='header'> <view class='header'>
<image class="touxiang" src="{{userInfo.avatarUrl}}"></image>
<text class="nicheng">{{userInfo.nickName}}</text>
<image src='/static/images/weixin_1.png'></image> <image src='/static/images/weixin_1.png'></image>
</view> </view>
@ -19,8 +21,8 @@
<view wx:else> <view wx:else>
<view class="userinfo"> <view class="userinfo">
<image bindtap="bindViewTap" class="userinfo-avatar" src="{{userInfo.avatarUrl}}" background-size="cover"></image> <image bindtap="bindViewTap" class="userinfo-avatar" src="{{avatarUrl}}" background-size="cover"></image>
<text class="userinfo-nickname">{{userInfo.nickName}}</text> <text class="userinfo-nickname">{{nickName}}</text>
</view> </view>
<view class="hr"></view> <view class="hr"></view>

Loading…
Cancel
Save