收藏
回答

开发者 工具调试器 开启 “Audits 体验评分“ 后,Storage 无法保存数据。

框架类型 问题类型 操作系统 工具版本
小游戏 Bug Windows 预发布版 RC Build (1.03.2007151)
//game.js
import './libs/weapp-adapter'
window.requestAnimationFrame(loop)
var test_run_times = 0
function test_audits(){
  if(test_run_times == 0 ){
    let key = 'test_audits'
    let value = '打开 Audits 后无法写入数据'
    wx.setStorageSync(key, value)
    let rs = wx.getStorageSync(key)
    if(rs == value){
      console.log('Storage 写入读取成功!')
    }else{
      console.log('Storage 写入读取失败!')
      console.log(rs)
    }
    test_run_times++
  }
}

function loop() {
  let ctx = canvas.getContext('2d')
  ctx.fillStyle = '#ffffff'
  ctx.fillRect(00window.innerWidth, window.innerHeight)
  ctx.fillStyle = '#000000'
  ctx.font = `${parseInt(window.innerWidth / 20)}px Arial`
  ctx.fillText('欢迎使用代码片段'10window.innerHeight * 1 / 5)
  ctx.fillText('可在控制台查看代码片段的说明和文档'10window.innerHeight * 1 / 5 + 30)
  test_audits()
  window.requestAnimationFrame(loop)
}
回答关注问题邀请回答
收藏

2 个回答

  • 疯狂的小辣椒
    疯狂的小辣椒
    2020-08-25

    你好,升级下rc版本

    2020-08-25
    有用
    回复 2
    • 田野
      田野
      2020-09-06
      RC Build (1.03.2008201) 下载了这个版本,还是老样子啊
      2020-09-06
      回复
    • 田野
      田野
      2020-09-06
      2020-09-06
      回复
  • 田野
    田野
    2020-08-10

    补充,开发者工具,稳定版 Stable Build (1.03.2006090) 也有这个问题

    2020-08-10
    有用
    回复
登录 后发表内容
问题标签