小程序
小游戏
企业微信
微信支付
扫描小程序码分享
如果,更新了最新版本也是不行啊。
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
看起来还没解决啊
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
没错, 我也发现了这个问题。
要在修改一下 重新保存后才会重新编译。
看看是不是设置的快捷键给覆盖了
是最新的稳定版(v1.02.1910120)么?清除缓存后编辑正常么?
该问题已知的,后续修复,感谢反馈
不会编译吗还是什么,css没有效果?
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
看起来还没解决啊
没错, 我也发现了这个问题。
要在修改一下 重新保存后才会重新编译。
看看是不是设置的快捷键给覆盖了
是最新的稳定版(v1.02.1910120)么?清除缓存后编辑正常么?
该问题已知的,后续修复,感谢反馈
不会编译吗还是什么,css没有效果?
//index.js
//获取应用实例
const app = getApp()
Page({
data: {
//motto: 'Hello World',
userInfo: {},
hasUserInfo: false,
canIUse: wx.canIUse('button.open-type.getUserInfo')
},
//事件处理函数
bindViewTap: function() {
// wx.navigateTo({
// url: '../logs/logs'
// })
},
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
})
}
})
}
let useI = wx.getStorageSync("userInfo");
//console.log(useI.nickName)
if (useI.nickName != undefined){
this.request();
}
},
request(){
//获取数据
},
getUserInfo: function(e) {
//console.log(e)
app.globalData.userInfo = e.detail.userInfo
this.setData({
userInfo: e.detail.userInfo,
hasUserInfo: true
})
wx.setStorageSync("userInfo", e.detail.userInfo);
//
var name = e.detail.userInfo.nickName;
wx.login({
success: function (res) {
//console.log(res)
wx.request({
url: 'http://xy.cdfjxh.com:777/ashx/business.ashx?action=getOpenID&id=' + res.code,
method: 'GET',
success: function (res) {
// console.log(res, res.code)
if (res.data.openid) {
//console.log(name)
wx.request({
url: `http://xy.cdfjxh.com:777/ashx/business.ashx?action=insertWxInfo&wxname=${name}&openid=${res.data.openid}`,
method: 'GET',
success: function (res) {
console.log(res)
this.request();
}
})
}
}
})
}
})
}
})
/**index.wxss**/
page{
background-color: #f8f8f8;
}
.userinfo {
display: flex;
flex-direction: column;
align-items: center;
}
.userinfo-avatar {
width: 128rpx;
height: 128rpx;
margin: 20rpx;
border-radius: 50%;
}
.userinfo-nickname {
color: #aaa;
}
.usermotto {
margin-top: 200px;
}
.content{
width: 100vw;
height: 40vh;
background-color: #62ac4c;
color: white;
font-weight: 500;
}
.name{
text-align: center;
font-size: 44rpx;
}
.content_List{
padding: 10px 40rpx;
}
.List_row{
display: flex;
margin: 15px 0;
font-size: 30px;
}
.row_li{
flex: 1;
}
.content2{
background-color: #fff;
margin-top: 30rpx;
}
.content2_List{
padding: 40rpx;
border-bottom: 1px solid #eee;
}
.content2_List:last-child{
border: none;
}
.shouquan{
position: absolute;
bottom: 10px;
}
.SQBtn{
height: 30px;
padding: 0;
color: #62ac4c;
display: inline-block;
font-size: 16px;
top: 4px;
}
.SQBtn::after{
border: none;
background-color: none;
}
.bold{
font-weight: bold;
}