We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
比如我在 A 小程序设置了:
Taro.setStorage({ key: 'foo', data: 'bar', })
B 小程序通过以下代码可以拿到 foo 的值嘛?
foo
Taro.getStorage({ key: 'foo', success(res) { console.log(res.data) }, })
The text was updated successfully, but these errors were encountered:
这个跟 taro 没关系, taro 只是帮你调用微信的api , 这就涉及到微信小程序自己的机制问题了。 https://developers.weixin.qq.com/miniprogram/dev/framework/ability/storage.html 根据微信小程序官方文档,可以得出结论是不共享的
Sorry, something went wrong.
No branches or pull requests
比如我在 A 小程序设置了:
B 小程序通过以下代码可以拿到
foo
的值嘛?The text was updated successfully, but these errors were encountered: