作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试将值存储到 expo SecureStore 但出现此错误
Invalid value provided to SecureStore. Values must be strings; consider JSON-encoding your values if they are serializable.
- node_modules\expo-secure-store\build\SecureStore.js:25:14 in setItemAsync$
- node_modules\regenerator-runtime\runtime.js:45:44 in tryCatch
- node_modules\regenerator-runtime\runtime.js:271:30 in invoke
- node_modules\regenerator-runtime\runtime.js:45:44 in tryCatch
- node_modules\regenerator-runtime\runtime.js:135:28 in invoke
- node_modules\regenerator-runtime\runtime.js:170:17 in <unknown>
- node_modules\promise\setimmediate\core.js:45:7 in tryCallTwo
- node_modules\promise\setimmediate\core.js:200:23 in doResolve
- node_modules\promise\setimmediate\core.js:66:12 in Promise
- node_modules\regenerator-runtime\runtime.js:169:27 in callInvokeWithMethodAndArg
- node_modules\regenerator-runtime\runtime.js:192:38 in enqueue
- node_modules\regenerator-runtime\runtime.js:216:8 in <unknown>
- node_modules\expo-secure-store\build\SecureStore.js:22:7 in setItemAsync
* src\context\AuthContext.js:32:37 in _callee$
- node_modules\regenerator-runtime\runtime.js:45:44 in tryCatch
- node_modules\regenerator-runtime\runtime.js:271:30 in invoke
- ... 13 more stack frames from framework internals
这是我正在尝试的代码...
await SecureStore.setItemAsync('email',response.data.email);
最佳答案
转换必须在发送 friend 变量之前完成,即使是 JSON(),它也遵循它的样子
await SecureStore.setItemAsync('email',JSON.stringify(response.data.email));
关于react-native - 提供给 SecureStore 的值无效。值必须是字符串;如果它们是可序列化的,请考虑对您的值进行 JSON 编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59136396/
最好的使用方法是什么Expos SecureStore保存登录凭据(例如电子邮件 + 密码)以便 iOS 钥匙串(keychain)(如果可能,同时保存 Android 的 Keystore 系统)可
我已经四处寻找并回答我的问题,但我似乎找不到类似的东西。我的代码返回了预期的值! 我正在 React-Native 中构建一个应用程序,目前正在处理登录问题。我需要保存 userId、userEmai
尝试将值存储到 expo SecureStore 但出现此错误 Invalid value provided to SecureStore. Values must be strings; consi
我是一名优秀的程序员,十分优秀!