收藏
回答

为什么worker不支持wx.request??

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug worker 工具 7.0.12 2.10.3

https://developers.weixin.qq.com/miniprogram/dev/framework/workers.html


worker.onMessage(function (res) {
  console.log('这是worker内部线程打印的')
  console.log(res)
  let sum = add(res.x, res.y);
  console.log(wx); // error
  worker.postMessage({
    sum: sum
  })
});


function add(x, y) {
  return x + y;
}

tion add(x, y) {
  return x + y;
}

tion add(x, y) {
  return x + y;
}


回答关注问题邀请回答
收藏
登录 后发表内容
问题标签