诗词
春节特辑|龙年新气象,你有啥愿望?龙年公仔陪你过年啦![图片] 各位微信开发者朋友, 甲辰龙年的钟声即将响起,新的一年即将到来。 过去的兔年,“兔” 开心遇见你们—— 一起列下 新年「兔」Do List,列好的清单是不是全部都打勾勾啦? 一起 发现宝藏程序媛,看到她们闪闪发光的多面生活! 一起 面对面交流技术与产品问题,终于网友 “面基” 啦! 一起 感慨程序员的至暗与至爽,但吐槽归吐槽,对代码还是坚持的热爱 ✊ 一起体验好多好多新能力,推动技术与产品提升(需求 / Bug 真的都在跟进的 。ì _ í。) …… 将至的龙年,非常期待 “龙” Time See You Again!希望新的一年与大家一起认真做技术、用心做产品,在技术之外发现更多快乐! 那么将至的龙年,你们有哪些真挚愿望呢?无论是日常的小小心愿,还是影响世界的宏大愿景,我们都期待听见你的声音,默默为你的愿望加油打气! 即日起至 2024 年 2 月 18 日,在下方评论区分享你的龙年新年愿望,精选评论的用户将获得超可爱的限定版龙年生肖公仔 1 只!助你好运 Long Long! [图片] 同时为了感谢大家对社区的一路支持,我们准备了「2024 龙码精神」红包封面,专属于微信开发者的排 “面”。数量有限,领完即止👇 [图片] 没有领到的小伙伴也不用担心,最后一波红包封面领取攻略看过来👇 领取时间:2024 年 2 月 4 日 10:24 领取方式:微信开发者公众号后台回复「新年快乐」 注意事项:数量有限,领完即止,记得调好闹钟哟 [图片] 👆提前关注公众号,红包封面一站领到 祝各位开发者朋友新年快乐,平安喜乐❤️
02-04我也遇到这问题,请问解决了么???
input放在swiper中,confirm事件触发两次input中输入内容。点击键盘的发送后,confirm被触发两次(真机才有问题,模拟器正常),机型:MATE 30 5G
2020-05-02解决了嘛?请教下思路
小程序点赞特效想实现点赞会有小图标持续往上冒的效果,现在只完成了点击一次一个图标向上冒,怎么实现上一个图标还没有消失就执行下一个图标的动画呢
2020-04-13请问这个 问题解决了么?我也遇到这个问题
webview中chooseImage:fail无法唤起相册在webview中 chooseImage:fail无法唤起相册 chooseImage:fail, the permission value is offline verifying
2018-09-14button::after{ border:none; }
wxss文件中设置无边框样式无效当此样式代码直接在button控件的style中填入时能实现按钮无边框的效果,但如果是在button空间用class引用wxss文件中的此样式代码则无法实现按钮无边框效果
2018-09-08我也遇到了这问题。光标在输入框的文字中间开始删除, 输入框 前面的文字删除完, 输入框 后面还有文字。console.log 为空。请问楼主是怎么解决的?
小程序input组件问题项目是用wepy生成的,出现一个问题:input组件在工具上调试正常,但在手机上预览或者体验版时,将光标移到最前面,点击删除,e.detail.value变为了空,不知道什么情况。。。。 [图片] [图片] [图片] 代码如下: <template> <view class="container"> <form bindsubmit="formSubmit" bindreset="formReset"> <view class="title">请输入孩子的账号和密码 </view> <view class="section"> <input bindinput="countValChange" name="account" placeholder="请输入孩子的账号或绑定的手机号" /> </view> <view class="section"> <input bindinput="psdValChange" name="password" placeholder="请输入密码" password="{{!showPsd}}" /> <view class="imgWrap" bindtap="showPsd"> <image wx:if="{{!showPsd}}" src="../static/password1.png" /> <image wx:if="{{showPsd}}" src="../static/password2.png" /> </view> </view> <view class="btn-area" wx-if="{{isSub}}"> <button formType="submit">关联账号</button> </view> <view class="btn-area notSub" wx-if="{{!isSub}}"> <button>关联账号</button> </view> </form> </view> </template> <script> import wepy from 'wepy' import { connect } from 'wepy-redux' import { SET_BIND_STATUS } from '../store/types/user' @connect({ bindStatus (state) { return state.user.bindStatus } }, { setBindStatus: SET_BIND_STATUS }) export default class ChildInput extends wepy.page { config = { navigationBarTitleText: '关联孩子账号' } components = {} data = { showPsd: false, count: '', psd: '' } methods = { formSubmit (e) { // 后台交互 console.log('form发生了submit事件,携带数据为:', e.detail.value) this._bindAccount(e.detail.value.account, e.detail.value.password) // 弹窗 // wepy.showToast({ // title: '成功', // icon: 'none', // duration: 2000 // }) }, showPsd() { this.showPsd = !this.showPsd }, countValChange(e) { this.count = e.detail.value console.log(this.count) }, psdValChange(e) { this.psd = e.detail.value console.log(this.psd) } } _bindAccount (account, password) { // let that = this wx.request({ url: `${this.$parent.globalData.baseURL}/wx/micro/parent/bindStu`, method: 'POST', header: { 'Content-Type': 'application/x-www-form-urlencoded', 'S_T': wx.getStorageSync('token') }, data: { userName: account, password: password }, success (res) { console.log('child-input.wpy --> _bindAccount --> success') console.log(res) if (res.data.ret_code === 0) { wx.showToast({ title: '关联成功', icon: 'success', duration: 1400, success () { setTimeout(() => { wx.navigateBack({delta: 1}) }, 1400) } }) } else { wx.showToast({icon: 'none', title: res.data.ret_msg, duration: 1400}) } }, fail (res) { console.log('child-input.wpy --> _bindAccount --> success') console.log(res) wx.showToast({icon: 'none', title: '关联孩子失败', duration: 1400}) } }) } computed = { isSub() { if (this.count && this.psd) { return true } else { return false } } } onLoad() {} } </script> <style lang="less"> .container{ width: 690rpx; margin: 0 auto; form{ width: 100%; height: auto; } .title{ margin: 30rpx 0; font-size: 40rpx; font-weight: 900; padding: 0; } .section{ height: 90rpx; width: 100%; border-bottom: 1rpx solid #cccccc; margin-top: 20rpx; position: relative; input{ height: 100%; line-height: 90rpx; } .imgWrap{ width: 48rpx; height: 48rpx; display: black; padding: 15rpx; position: absolute; top: 0; right: 15rpx; z-index: 99; image{ width: 48rpx; height: 48rpx; } } } .btn-area{ margin-top: 50rpx; button{ color: #ffffff; background: #007AFF; } } .notSub button{ background: #cccccc; color: #999999; } } </style>
2018-07-17我也遇到了这问题。光标在输入框的文字中间开始删除,输入框前面的文字删除完,输入框后面还有文字。console.log 为空。请问楼主是怎么解决的?
input的e.detail.value在手机预览时丢失,变为空input组件在开发者工具上一切正常,但在手机预览时,将光标放在最前面,点击删除键 e.detail.value变为空,代码如下: // wxml <input bindinput="countValChange" name="account" placeholder="请输入账号或绑定的手机号" /> // js [代码]Page({ data: { inputValue: '' },[代码][代码] countValChange: function(e) { [代码] [代码] // 手机预览时,将光标放在最前面,点击删除键,在vconsole上打印出的结果是空 [代码] [代码] console.log([代码]e.detail.value[代码])[代码] [代码] this.setData({[代码] [代码] inputValue: e.detail.value[代码][代码] }) [代码] [代码] } })[代码]
2018-07-17