各位vscode用户:不要使用下面这个插件 -> [图片] 代码保存后自动给你加上了空格。
使用text组件在代码里面换行后渲染出来会多出来空格?代码: [图片] 就是text标签不在同一行,因为写代码习惯格式化,格式化工具会自动换行,才遇到这个问题。 <text>{{item.text}}</text> 在同一行这样写是没问题的。 渲染结果: [图片]
2023-11-30官方能不能在开发者工具这里加一个模拟键盘的功能,测试的时候不用老是麻烦真机了。 [图片]
小程序模拟器,input键盘不弹出- 当前 Bug 的表现(可附上截图) 点击模拟器中的input,不弹出键盘 - 提供一个最简复现 Demo wxml <view class='input_view'> <input class='comment_input' type='text' placeholder='前方高能,火速评论'></input> </view> wxss .input_view{ width: 100%; height: 44px; position: fixed; left: 0; right: 0; bottom: 0; border-top: 1px solid rgb(243, 242, 243); background-color: white; } .comment_input{ height: 30px; line-height: 30px; background-color: rgb(243, 242, 243); margin: 7px 40px 0 40px; font-size: 14px; border-radius: 15px; padding-left: 20px; padding-right: 15px; }
2022-11-25我跟你遇到的问题一样,我的问题解决方案就是去掉虚拟组件设置就可以了 options:{ styleIsolation:"apply-shared", //"isolated", //virtualHost: true },
selectcomponent 返回null[代码]onLoad: function(){[代码][代码] [代码][代码]this[代码][代码].barComponent = [代码][代码]this[代码][代码].selectComponent([代码][代码]'#barDom'[代码][代码]);[代码][代码] [代码][代码]console.log([代码][代码]this[代码][代码].selectComponent([代码][代码]'#barDom'[代码][代码]))[代码][代码] [代码][代码]this[代码][代码].lineComponent = [代码][代码]this[代码][代码].selectComponent([代码][代码]'#lineDom'[代码][代码]);[代码][代码] [代码][代码]this[代码][代码].pieComponent = [代码][代码]this[代码][代码].selectComponent([代码][代码]'#pieDom'[代码][代码]);[代码][代码]},[代码] [代码][代码] <ec-canvas id="lineDom" canvas-id="line" ec="{{ecLine}}"></ec-canvas> <ec-canvas id="barDom" canvas-id="bar" ec="{{ecBar}}"></ec-canvas> <ec-canvas id="pieDom" canvas-id="pie" ec="{{ecPie}}"></ec-canvas> 早上还可以取到barComponent 下午的时候就报null [图片]
2020-12-23