看了文档,text可以内嵌span组件, 可以达到预期效果 https://developers.weixin.qq.com/miniprogram/dev/component/text.html?property=skyline 新增 span 组件用于内联文本和图片,如 <span> <image> </image> <text>bar</text> </span> 修正方案后: <text overflow="ellipsis" max-lines="2"> <span> <image wx:if="{{ipLabeStyle.pic && product.showIpLabelImage}}" class="ip-pic" src="{{ipLabeStyle.pic}}" mode="heightFix"></image> <text>{{product.brandShowName}}</text> <text>{{product.title}}</text> </span> </text>
Skyline目前text不支持缩进text-indent这个属性?skyline如果文本布局复杂的情况下,无法达到预期效果。 预期效果 [图片] 目前的解决方案就是【ANESSA】前面加了nbsp;空格来达到缩进效果 希望官网text组件支持text-indent属性 less: .product-name-skyline { padding-top: 12rpx; box-sizing: border-box; width: 100%; color: #222222; font-size: 28rpx; line-height: 38rpx; height: 88rpx; .ip-pic, .ip-label { position: absolute; } .brand-name { font-weight: bold; margin-right: 10rpx; } .ip-pic { display: inline-block; width: @ipPicWidth; height: 28rpx; transform: translateY(4rpx); } } wxml: <view wx:if="{{isSkyline}}" class="product-name-skyline"> <!-- 这里的图片标签要设置为绝对定位 --> <image wx:if="{{ipLabeStyle.pic && product.showIpLabelImage}}" class="ip-pic" src="{{ipLabeStyle.pic}}" mode="heightFix"/> <text overflow="ellipsis" max-lines="2"> <!-- 注意:空格不要删 目前通过输入多个空格来达到缩进的效果 Skyline目前text不支持缩进text-indent这个属性 --> <text wx:if="{{product.brandShowName && product.showIpLabelImage}}" decode="{{true}}" class="brand-name"> {{product.brandShowName}}</text> <text>{{product.title}}</text> </text> </view>
07-19+1 我今天也收到大量告警 希望官方尽快解决一下
今天wx.hideLoading()调用突然开始报错?仅真机复现,调试器无提示 直接调用wx.hideLoading()就会报错[图片] 由于该api通常在接口调用前后使用,当有两个接口同时调用时,会调用两次wx.showLoading(),在两个接口完成后分别调用一次wx.hideLoading(),第一个wx.hideLoading()会关闭loading,此时第二个wx.hideLoading()就会告警 问题的触发场景较为常见,并且不好避免,是官方刚刚加上的这个报警吗,如果是有什么规避方案么
2023-08-21我也是遇到同样的问题!但是用例可以正常跑。就是这种lanuch方式每次都要重新启动。
小程序的自动化端口已开启端口号是0?执行命令"path/to/cli" auto --project "path/to/project" --auto-port 9420 [图片]
2023-03-20遇到同样的问题
Cannot read property 'is' of undefined?[图片] 开发者工具大量报Cannot read property 'is' of undefined错误,是什么问题导致的呀?
2023-01-12https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/page.html#%E9%85%8D%E7%BD%AE%E9%A1%B9 官网有个配置项,希望能帮到您!
小程序分享朋友圈自定义顶部导航栏被遮挡[图片]自定义导航栏会在分享时被遮挡
2021-12-03我们也是遇到,一脸懵逼,希望官方尽快修复这个问题啦
直播插件live-player-plugin 使用中报 error?报错: Error: This application has not registered any plugins yet. Error: This application has not registered any plugins yet. at t.checkWxConfig (https://lib/WASubContext.js:2:1593908) at t.requirePlugin (https://lib/WASubContext.js:2:1596310) at https://usr/app-service.js:4654:2 使用的插件配置: plugins: { "live-player-plugin": { "version": "1.2.4", "provider": "wx2b03c6e691cd7370" } } 微信客户端版本:7.0.12、7.0.13、7.0.16、7.0.19、7.0.20等都有出现
2021-06-17