收藏
回答

读取缓存出现的错误

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug getStorage 客户端 未知 未知

收到有不少客户的反映,大部分是iPhone6s的说我们的小程序提示错误。从后台日志看到了以下错误,从错误提示上理解,应该是调用

getStorage出现了异常,这个是什么问题呀?


webviewSDKScriptError Failed get storage group metadata;getGlobalStorage:fail:access denied Error: Failed get storage group metadata    at Ke (<anonymous>:44:20578)    at <anonymous>:44:23185    at Object.w (<anonymous>:41:2398)    at Object.ret.invokeCallbackHandler (<anonymous>:21:28)    at <anonymous>:1:67



堆栈信息

error

webviewSDKScriptError Failed get storage group metadata;getGlobalStorage:fail:access denied Error: Failed get storage group metadata at Ke (<anonymous>:44:20578) at <anonymous>:44:23185 at Object.w (<anonymous>:41:2398) at Object.ret.invokeCallbackHandler (<anonymous>:21:28) at <anonymous>:1:67

  • webviewSDKScriptError

  • Failed get storage group metadata;getGlobalStorage:fail:access denied

  • Error: Failed get storage group metadata

  • at Ke (<anonymous>:44:20578)

  • at <anonymous>:44:23185

  • at Object.w (<anonymous>:41:2398)

  • at Object.ret.invokeCallbackHandler (<anonymous>:21:28)

  • at <anonymous>:1:67


以下是在app.js写的调用方法

//获取缓存

getStorage(key) {

return new Promise((resolve, reject) => {

wx.getStorage({

key: key,

success: function (res) {

resolve(res.data);

}, fail: function (res) {

resolve(null);

}

})

})

}


最后一次编辑于  2018-09-17
回答关注问题邀请回答
收藏

5 个回答

  • 2018-09-17

    同遇到,不知道什么原因

    2018-09-17
    有用 1
    回复
  • clz
    clz
    2018-12-02

    这个问题解决了吗,我的小程序也是报这个错误

    2018-12-02
    有用
    回复
  • 2018-10-12

    同问

    2018-10-12
    有用
    回复
  • 小葱
    小葱
    2018-09-29

    一堆这样的报错

    2018-09-29
    有用
    回复
  • George (乔治)
    George (乔治)
    2018-09-28

    同问,这周才发生的

    2018-09-28
    有用
    回复
登录 后发表内容