同样的问题,真感觉微信画蛇添足,原web Worker数据结构破话了不说,功能还会有问题
主进程接受不到 worker.postMessage消息?[图片] Page({ data: {}, onLoad: function () { this.worker = wx.createWorker('/worker/test.js'); this.worker.onMessage(function (res) { console.log("主进程接受消息"); console.log(res); }); this.worker.postMessage({ msg: "你好!!" }); }, onUnload: function(){ this.worker.terminate(); } }) worker/test.js 代码: worker.onMessage(function (message) { console.log("子进程worker输出"); console.log(message); worker.postMessage({ msg: "hello!!!" }) });
02-22今天2024-2-7,请问支持了吗?
微信小程序如何引用MathJax.js库?您好,由于开发上的需求,请问微信小程序有没有webview组件,有或没有的话应如何接入MathJax.js库,https://www.mathjax.org!谢谢!
02-07楼主解决了吗,我也遇到了同样的问题
canvas2D在PC端小程序中出现错误 createImage 返回空对象[图片] canvas2D在PC端小程序中出现错误 createImage 返回空对象 如图 开发者工具 安卓 ios 测试都可以正常加载
2023-08-07