参考我回答的这个 https://developers.weixin.qq.com/community/develop/doc/000e26fb024ff8e28b1dc4adf51000
用开发者工具快速创建ts开发的小程序怎么配置路径别名?现在在tsconfig.json中配置了 { "compilerOptions": { "strictNullChecks": true, "noImplicitAny": true, "module": "CommonJS", "target": "ES5", "allowJs": false, "experimentalDecorators": true, "noImplicitThis": true, "noImplicitReturns": true, "alwaysStrict": true, "inlineSourceMap": true, "inlineSources": true, "noFallthroughCasesInSwitch": true, "noUnusedLocals": true, "noUnusedParameters": true, "strict": true, "removeComments": true, "pretty": true, "strictPropertyInitialization": true, "lib": ["es2015", "es2017"], "baseUrl": "./", "paths": { "@/*": ["miniprogram/*"], "@common/*": ["miniprogram/common/*"], "@sr": ["miniprogram/supermarket"], "@sr/*": ["miniprogram/supermarket/*"] }, "plugins": [{ "transform": "typescript-transform-paths", "after": true }], "importHelpers": true, "typeRoots": [ "./typings" ] }, "include": [ "./**/*.ts" ], "exclude": [ "node_modules" ] } 但是执行yarn tsc ts中的别名引用没替换 应该怎么实现路径别名呢
2023-05-18https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#resolveAlias tsconfig.json下 "paths": { "@/*": ["miniprogram/*"] }, 通过上面这两个就可以配置别名了
新版的开发工具TS别名支持?如果是接口的声明文件可以通过别名导出,但是如果不是接口文件,只是一个普通的ts文件,用路径的别人确会报错,找不到。 大家有遇到吗
2023-05-18https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateBackMiniProgram.html
半屏小程序关闭后操作事件?微信小程序最近出的半屏小程序,有没有弹出半屏小程序后,关闭半屏小程序的一个操作事件? 或者说如何在操作半屏小程序回传数据到主小程序里边去?
2022-12-08wx.qy.shareToExternalMoments({ text: { content:"56789", // 文本内容 }, success(res) { if (res.err_msg == "shareToExternalMoments:ok") { } }, fail() {}, complete() {} }) 改成这样就可以了,我猜是接口文档写错了
wx.qy.shareToExternalMoments调用没有失败,回调函数没有执行,是为什?wx.qy.shareToExternalMoments调用失败,checksession 也是正常的,回调函数没有打印,还有其他需要配置或调用的吗? wx.qy.shareToExternalMoments({ text: { content:"56789", // 文本内容 }, }, function(res) { console.log(res, '**shareToExternalMoments') if (res.err_msg == "shareToExternalMoments:ok") { } }
2022-12-02同问,苹果的可以,安卓有些机型不行
企业微信安卓客户端H5页面,长按保存图片,提示“保存失败”,也无法转发到微信H5页面 canvas生成图片后显示在页面上,长按图片弹出操作菜单,选择“保存图片”,提示“保存失败”
2022-10-12