个人案例
- M小黎
展示社区月度贡献名单和贡献值排行
社区贡献者排行榜扫码体验
- 小黎one商店
初试微信小商店
小黎ONE商店扫码体验
默认的无法去除
微信内置浏览的导航栏去不掉么?[图片]
10-28[图片] [图片]
为什么sticky-header不生效呢?请问一下大佬们,我就写了下面这一个很简单的demo,但是为啥吸顶不生效呢? <scroll-view class="scroll-area" scroll-y type="custom"> <sticky-section push-pinned-header="{{false}}"> <sticky-header> <view class="day-container">{{wedDay}},剩余:{{remain}}天</view> </sticky-header> <text> a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a</text> </sticky-section> </scroll-view>
10-28你是想做什么,marker放到自定义图片图层下那不就看不到了,那还有啥意义
GroundOverlay层级怎么修改微信小程序的地图渲染机制决定了 [代码]Marker[代码] 总是会显示在 [代码]GroundOverlay[代码] 之上。即使 [代码]GroundOverlay[代码] 的 [代码]zindex[代码] 设置得较高,地图组件内部的渲染顺序也会优先把 [代码]Marker[代码] 放在 [代码]GroundOverlay[代码] 之上。
10-26动态绑定数据啊,你这是啥写法,好好看下文档https://developers.weixin.qq.com/miniprogram/dev/reference/api/Page.html#%E7%BB%84%E4%BB%B6%E4%BA%8B%E4%BB%B6%E5%A4%84%E7%90%86%E5%87%BD%E6%95%B0
为什么获取不到某个Id的text值?我想要清空一部分text值 现在无法选中 <view class="tags-container"> <view class="tag-row"> <text class="tag">订单编号</text> <text class="separator">:</text> <text class="tag" id="ddh">001-202410164385</text> </view> <view class="tag-row"> <text class="tag">订单日期</text> <text class="separator">:</text> <text class="tag" id="ddrq">2024-03-05</text> </view> <view class="tag-row"> <text class="tag">客户编号</text> <text class="separator">:</text> <text class="tag" id="khbh">007</text> </view> <view class="tag-row"> <text class="tag">客户名称</text> <text class="separator">:</text> <text class="tag" id="khmch">测试公司</text> </view> <view class="tag-row"> <text class="tag">物料编号</text> <text class="separator">:</text> <text class="tag" id="wlbh">DIY001</text> </view> <view class="tag-row"> <text class="tag">物料名称</text> <text class="separator">:</text> <text class="tag" id="wlmch">足球服定制工艺</text> </view> <view class="tag-row"> <text class="tag">工序名称</text> <text class="separator">:</text> <text class="tag" id="gxmch">设计</text> </view> <view class="tag-row"> <text class="tag">工序描述</text> <text class="separator">:</text> <text class="tag" id="gxms">设计</text> </view> <view class="tag-row"> <text class="tag">剩余数量</text> <text class="separator">:</text> <text class="tag" id="sysl">3600</text> </view> </view> 我想清空 tag-row里面最后一个text值 怎么连tag-row都无法选择 cleartext() { // 获取所有的 tag-row 组件 const tagRows = this.selectAllComponents('.tag-row'); console.log('找到的 tag-row 组件:', tagRows); // 输出找到的组件 console.log("调用 cleartext 方法"); // 检查是否成功获取到 tag-row if (tagRows.length === 0) { console.error('没有找到任何 tag-row 组件'); return; } // 遍历每一个 tag-row tagRows.forEach(row => { console.log('处理 tag-row'); // 获取最后一个 text 组件 const texts = row.selectAllComponents('text'); if (texts.length > 0) { const lastText = texts[texts.length - 1]; // 清除最后一个 text 的内容 lastText.setData({ value: '' }); } }); },
10-26啥指令,请把这段样式写到wxss文件里面 [图片]
求大佬?[图片]为什么这个指令不执行
10-25鼠标移到下边框出现“双头箭头”光标可以拖动改变高度 [图片]
开发者工具代码提示框高度可不可以调整?[图片] 这个提示框的高度太小了,使用起来非常不方便,找了设置也没地方可以调,请问一下这个可不可调
10-25腾讯广告,要钱
视频号单个视频内容或者图文如何才能挂载小程序呢?视频号单个视频内容如何才能跳转到小程序上面呢?看了资料,有说两种方式: 一是:先到公众号创建文章,文章里面嵌入小程序,再复制文章地址,输入到视频号链接地址里面,但是这种方式会提示:包含有小程序,不支持。 二是:通过小程序视频号交易组件,但是这个功能已经关闭,无法再申请,而且现在我们已经开通了微信小店,是不是就不用交易组件了 最近访问了大量的别人的视频号,好像只有微短剧类型的视频号可以跳转到小程序,其他的均不行,不知道是不是只有此类型才可以跳转呢?
10-25你这样写没报错么?我这样写是能直接当前+5s的 forwardFiveSeconds() { const player = this.selectComponent('#tvp-id') const currentTime = player.playtime; player.seek(currentTime + 5); }
腾讯视频插件,通过seek设置进度跳转 无效,如何解决?<player-component id="tvp-id" playerid="tvp" vid="{{nowvid}}" style="width:100%;"> <view slot="bottom-left-ctrl-btn" style="display: flex;"> <button class="yhx_but_bottom" bind:tap="backwardFiveSeconds">-5s</button> <button class="yhx_but_bottom" bind:tap="forwardFiveSeconds">+5s</button> </view> </player-component> js: forwardFiveSeconds(){ const player = this.selectComponent('#tvp-id') if (player && typeof player.getCurrentTime === 'function' && typeof player.seek === 'function') { const currentTime = player.getCurrentTime(); player.seek(currentTime + 5); } else { console.error('Player methods not available!'); } },
10-25点击弹窗框你直接给input的值setData为空就行了啊
input type="nickname" 如何清空值?<input type="nickname" /> 获取昵称后如何清空该值, 因为我是封装了一个弹窗组件 用户授权了昵称但是没点提交, 在点击弹窗应该清空表单的, 我现在无法清空除非我把这个组件卸载再重新加载次, 各位大佬我改怎么办
10-25小程序后台账号设置里面小程序头像修改[图片]
小程序底第二个头像怎么改?第二个头像怎么改 [图片]
10-25