小程序
小游戏
企业微信
微信支付
扫描小程序码分享
小白请大神指教
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
用错接口了你
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
是不是用的旧版本的api
你好,请问可以贴一下获取用户信息的代码吗?
//login.js
var app = getApp();
Component({
properties: {
dUserId: {
type: Number,
value: 0,
observer: function(e, t) {}
}
},
data: {
modalMsg: "获取你的公开信息(昵称、头像等)",
isLogin: !1
attached: function() {
var e = wx.getStorageSync("user") || [];
this.setData({
isLogin: null == e.name
});
methods: {
getUserInfo: function(e) {
var t = this.data.dUserId, n = this, a = e.detail.userInfo;
app.get_openid().then(function(e) {
app.util.request({
url: "entry/wxapp/Login",
cachetime: "0",
openid: e,
img: a.avatarUrl,
name: a.nickName
success: function(e) {
console.log(e), app.get_user_info(!0).then(function(e) {
0 < t && app.distribution.distribution_parsent(app, t), n.setData({
}), wx.setStorageSync("user", e), n.triggerEvent("togetuserinfo", {});
}), console.log(e.detail.userInfo);
<view wx:if="{{isLogin}}">
<view>
<view class="isMask"></view>
<view class="isLogin">
<view class="loginTitle">微信授权</view>
<view class="loginshopImg">
<view>小程序将获取以下权限:</view>
<view>(如未授权,可能无法正常使用该小程序)</view>
</view>
<view class="isAgary">
<text>•</text>
<view>{{modalMsg}}</view>
<view class="isLoginBtn">
<button bindgetuserinfo="getUserInfo" openType="getUserInfo">授权登录</button>
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
用错接口了你
是不是用的旧版本的api
你好,请问可以贴一下获取用户信息的代码吗?
//login.js
var app = getApp();
Component({
properties: {
dUserId: {
type: Number,
value: 0,
observer: function(e, t) {}
}
},
data: {
modalMsg: "获取你的公开信息(昵称、头像等)",
isLogin: !1
},
attached: function() {
var e = wx.getStorageSync("user") || [];
this.setData({
isLogin: null == e.name
});
},
methods: {
getUserInfo: function(e) {
var t = this.data.dUserId, n = this, a = e.detail.userInfo;
app.get_openid().then(function(e) {
app.util.request({
url: "entry/wxapp/Login",
cachetime: "0",
data: {
openid: e,
img: a.avatarUrl,
name: a.nickName
},
success: function(e) {
console.log(e), app.get_user_info(!0).then(function(e) {
0 < t && app.distribution.distribution_parsent(app, t), n.setData({
isLogin: !1
}), wx.setStorageSync("user", e), n.triggerEvent("togetuserinfo", {});
});
}
});
}), console.log(e.detail.userInfo);
}
}
});
<view wx:if="{{isLogin}}">
<view>
<view class="isMask"></view>
<view class="isLogin">
<view class="loginTitle">微信授权</view>
<view class="loginshopImg">
<view>小程序将获取以下权限:</view>
<view>(如未授权,可能无法正常使用该小程序)</view>
</view>
<view class="isAgary">
<text>•</text>
<view>{{modalMsg}}</view>
</view>
<view class="isLoginBtn">
<button bindgetuserinfo="getUserInfo" openType="getUserInfo">授权登录</button>
</view>
</view>
</view>
</view>