- textarea新出现的Bug
我用vivo xShot 手机进行测试,昨天还好好的,今天下午就出现bug了!文本框输入完成后,点击键盘上的完成按钮,键盘隐藏,但我的文本框中的文字调到底了,而且只能显示第一行了,之前都没有出现这个问题,是不是最近微信小程序更新了啊? 这个问题该怎么解决哦?[图片] [图片]
2017-09-30 - 在小程序模拟器和真机调试状态下都可以得到openid,但真机非调试状态下获取不到
在小程序模拟器和真机调试状态下都可以得到并保存起来,但在真机非调试状态下就获取不到?? 基础库版本1.5.2 开启ES6转ES5 开启状态 开启上传代码时样式文件自动补全 开启状态 开启代码压缩上传 开启状态 开发环境不校验请求域名、TLS版本以及HTTPS证书 开启状态
2017-09-26 - 文字兼容性问题
在微信开发 者工具中开发时同一个text标签下的“汉字”、“英文”、“数字”都是排在一条水平线上的,我米有问题,但我用我的手机预览,发现“汉字”、“英文”、“数字”在我手机上显示不在一条水平 线上,“英文”、“数字”明显要比汉字高出一截,看起来很不协调,再换了一个手机格式又不一样了,请问一下这个兼容性问题该怎嘛解决?
2017-09-23 - 在微信小程序开发者工具中点击预览时报错
在微信小程序开发者工具中点击预览时报错,[图片],之前都还好好的。编译的时候也没有哪里报错啊。请问该怎嘛解决啊,急。。。
2017-09-21 - 请问一下小程序中图片的上传方法?
看了一下官方的API, [代码]wx.chooseImage({ success: function(res) { var tempFilePaths = res.tempFilePaths wx.uploadFile({ url: 'https://example.weixin.qq.com/upload', //仅为示例,非真实的接口地址 filePath: tempFilePaths[0], name: 'file', formData:{ 'user': 'test' }, success: function(res){ var data = res.data //do something } }) } })[代码]但是我的图片就是上传不到数据库中,这是我写的代码: // pages/comment/comment.js var app = getApp(); Page({ /** * 页面的初始数据 */ data: { // openid: app.globalData.openid, userInfo: {}, tempFiles: [], imglist:[], // tempFilePaths:[], name: '所在位置', address:'', img:"../../images/comment/dingwei1_03.png" }, /** * 生命周期函数--监听页面加载 */ onLoad: function () { this.setData({ userInfo:app.globalData.userInfo }) }, onShow:function(){ }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, // 点击选择图片 chooseimage: function () { console.log('点击选择图片'); var _this = this; wx.chooseImage({ count: 3, // 默认9 sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有 sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有 success: function (res) { console.log(res); var tempFilePaths = res.tempFilePaths; _this.setData({ imglist:tempFilePaths }) } }) }, //获取位置 bindLocation: function () { var that = this; wx.chooseLocation({ success: function (res) { console.log(res); that.setData({ name: res.name, address: res.address, img: "../../images/comment/location.png" }); } }) }, //表单提交事件 bindFormSubmit: function (e) { var that = this; if ( app.globalData.userInfo.openid ){ //如果已经登录成功 var title = e.detail.value.title; var content= e.detail.value.content; var position= that.data.name; var openid=app.globalData.userInfo.openid; var imglist= that.data.imglist ; if (title==''){ wx.showModal({ title: '提示', content: '标题不能为空', showCancel:false }) } else if (content==''){ wx.showModal({ title: '提示', content: '请输入你要发表的内容', showCancel: false }) } else { wx.request({ method: "post", url: 'https://www.zsjinrong.cn/index.php/index/post/postHandle', data: { title: title, content: content, position: position, openid: openid, images: imglist }, success: function (res) { console.log(res.data.date) if(imglist != ''){ //开始插入图片 for (var i = 0; i <imglist.length; i++) { console.log(imglist[i]); // // 上传图片 wx.uploadFile({ url: 'https://www.zsjinrong.cn/index.php/index/post/addPostImg', filePath:imglist[i], name: 'images', header: { "Content-Type": "multipart/form-data" }, formData:{ postId: res.data.date }, success: function (res) { if(i>=imglist.length){ that.setData({ imglist:[] }) wx.showToast({ title: '图片导入成功', icon: 'success', duration: 2000 }) //发表成功后跳到首页显示 wx.switchTab({ url: '../index/index', }); } } }) } console.log(imglist); } } }); } }else{ //还没有登录提示登录 wx.showModal({ title: '提示', content: '您是否授权登录?', confirmText: '授权', cancelText:"拒绝", success: function (res) { if (res.confirm) { console.log('用户点击授权'); app.getUserOpenId();//获取openid } else if (res.cancel) { console.log('用户点击取消') wx.showToast({ title: '取消登录', icon: 'success', duration: 500 }) } } }) } } }) 请各位大神帮忙看看
2017-09-12