同样的问题. 微信技术真的好垃圾啊 <cover-view wx:if="{{refreshView}}" style="position: absolute;">...refreshView.显示</cover-view> 应该是同层渲染层级问题; 在自定义气泡里加一个定时器控制一个空标签不断地显示隐藏; 不断地触发重绘; 这样就可以显示图片了. 这个bug让我搞了一天 我是真的谢谢腾讯的程序员 <cover-view slot="callout"> <cover-view> <!-- 定时器不断设置 refreshView 的值为 true/false --> <cover-view wx:if="{{refreshView}}" style="position: absolute"> </cover-view> <!-- 气泡其他代码 --> </cover-view> </cover-view>
map组件 自定义callout气泡里面放图片 开发工具显示正常 ios 安卓显示的空白?[图片]开发工具显示出来 [图片] ios 跟安卓都显示的有问题
2023-03-16参考: https://developers.weixin.qq.com/community/minihome/doc/00082479f10bc025566edaa2356400
ffmpeg安装后依旧提示插件不存在,iPhone真机调试没有问题?小程序做视频压缩功能时提示安装ffmpeg,但安装后依旧提示插件不存在,开发者工具也重启了,ffmpeg命令也正常使用,iPhone真机调试没有问题,唯独开发者工具不行
2023-03-15https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#resolveAlias
引用绝对路径怎么使用啊,哪里有文档说明?[图片]
2022-12-09resolveAlias 绝对路径可通过配置alias解决 https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#resolveAlias
require有没有绝对路径和相对路径之分?[图片] 在require中使用路径:/utils/taskMgr.js 但为什么报错的时候还是从当前目录("pages/index/utils/taskMgr.js")在找呢?
2022-12-09resolveAlias 绝对路径可通过配置alias解决 https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#resolveAlias
import require不支持绝对路径在页面引用库 路径不支持绝对路径 文件目录结构发生变更,很难维护
2022-12-09resolveAlias 绝对路径可通过配置alias解决 https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#resolveAlias
require引入能否支持下绝对路径?项目大的话,require只支持相对路径,后期代码极难维护啊
2022-12-09resolveAlias 绝对路径可通过配置alias解决 https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#resolveAlias
'import' 'require'不支持绝对路径吗?import utt_im from "/utils/utils" const utt_re = require('../../utils/utils') 相对路径无效,会自动拼接在当前路径下,有解决方法吗?
2022-12-09部分支持了 见文档 https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#resolveAlias
再次反馈:require的绝对路径问题!看到社区已经有人反映了好几次了,官方也恢复是bug了,但一直没修复,还是请官方大大修复一下,不然真的很难用,就是require的绝对路径引用问题,现在只支持相对路径,不支持绝对路径,修复一下吧,谢谢啦! bug具体表现如图: [图片]
2022-12-09自定义npm位置用这个方法 packNpmManually 文档上有
miniprogram-ci报错__NO_NODE_MODULES__ NPM09:57:37 Error: __NO_NODE_MODULES__ NPM packages not found. Please confirm npm packages which need to build are belong to `miniprogramRoot` directory. Or you may edit project.config.json's `packNpmManually` and `packNpmRelationList` 09:57:37 at Object.packNpm (/Users/liming/jenkins/jenkins/workspace/test-monorepo-mini/property-sales/node_modules/miniprogram-ci/dist/utils/npm/packnpm.js:1:13029) 09:57:37 at async /Users/liming/jenkins/jenkins/workspace/test-monorepo-mini/property-sales/deploy.js:37:33
2022-10-12全局插件和分包插件 只能选择一种; 不能同时存在. 垃圾wx
小程序分包不能调用插件?[图片][图片] 在小程序中全局调用插件后可以打开插件并正常使用,但是在分包中调用插件可以打开插件却不能正常使用,是为什么呢?
2022-09-07