- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
免责声明:仍在学习 RN,第一次使用 AsyncStorage。
所以我尝试在 AsyncStorage 中存储“item”对象的数组。用户可以创建“item”对象,它们最终应该显示在另一个屏幕上的 FlatList(或类似组件)中。
例如:
itemArray = [
{
keywords: "box",
size: "medium",
color: "black",
},
{
keywords: "pillow",
size: "large",
color: "white",
}]
当用户填写文本输入框并点击添加时,我调用一个函数 addItem
,该函数从存储中检索当前的 itemArray
,并附加另一个 item
对象与表单的值。但是,调用返回的 res
变量似乎未定义。
storeData
函数只需调用 AsyncStorage.setItem()。
我收到错误:TypeError:无法读取未定义的属性“数据”
这是我的代码:
addItem = async () => {
try {
const res = await AsyncStorage.getItem('itemArray')
.then(req => JSON.parse(req))
.then(json => console.log(json));
// Item array is populated, append to it
if(res !== null) {
console.log(res); // Outputs undefined
var itemArray = res.data;
itemArray.push({"keywords": this.state.keywords, "color": this.state.color, "size": this.state.size});
storeData(array);
}
// Item array is not populated, initialize and append
else {
console.log(res); // Outputs undefined
var itemArray = new Array();
itemArray.push({"keywords": this.state.keywords, "color": this.state.color, "size": this.state.size});
storeData(itemArray);
}
} catch(e) {
// error reading value
console.log(e); // Outputs TypeError: Cannot read property 'data' of undefined
}
}
我的 getItem 函数有什么问题吗?
编辑:这是我的 storeData 函数,因为它可能是错误的来源:
storeData = async (itemArray) => {
try {
var itemData = {
data: itemArray,
};
console.log(itemData);
await AsyncStorage.setItem('itemArray', JSON.stringify(itemData))
console.log('success!');
} catch (e) {
// saving error
}
}
最佳答案
如果使用“await”,则不需要使用“then”函数。
相反:
const res = await AsyncStorage.getItem('itemArray')
.then(req => JSON.parse(req))
.then(json => console.log(json));
这样做:
const res = await AsyncStorage.getItem('itemArray');
const parsed = JSON.parse(res);
现在您可以使用“parsed”变量来访问其中的数据:
console.log(parsed.data); // should get you your data...
关于javascript - React Native AsyncStorage.getItem 返回未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56207654/
我正在开发一个使用 Expo 创建的 React Native 项目。我一直在使用普通的旧 AsyncStorage , 从 react-native 导入,一切都很好。 在查找如何模拟 AsyncS
我正在使用 AsyncStorage在 React Native 中,但我的问题总是出错 _reactNative.AsyncStorage.setItem is not a function 当我使
出了什么问题: Execution failed for task ':app:multiDexListDebug'. > A failure occurred while executing com
我有一个基于卡片的应用程序(左右滑动) 当我向左或向右滑动时,我会为其分配功能。 SwipeRight:(向右移动时执行的功能) storeInLevel1(props.id) removeFromL
我已经查看了有关 asyncStorage 的文档,但不明白为什么它没有保存我的数据。我将 Laravel 用于 API 和 Vue native(react-native 的包装器)。当用户注册时,
我有一个带有记住我的按钮的登录屏幕,当我连接时,我想将此信息存储在 asynsctorage 中,如下所示: if (this.isFormValid()) { AccountSe
如果这个问题是语法错误或类似的问题,请原谅我,我是 React-Native 的新手,还有很多东西需要学习。 我按照文档尝试了 AsyncStorage,但它返回了一个错误。 class iCare
如何在“componentDidMount”处获取 AsyncStorage 项目,这里是我的代码 componentDidMount() { AsyncStorage.getItem('custom
我正在使用 expo 和 react-native我正在尝试使用 AsyncStorage 在持久存储中保存 3 个值这样我就可以从应用程序的任何地方获取它,但是 asyncstorage 不保存或检
我有一个 react-native我计划重新编写所有代码库的项目,新的源代码。我打算使用相同的包ID。 所以我的客户,他们希望用户会收到有关新应用程序版本的通知。在他们更新后,登录状态将保持 ,因此用
我正在使用 redux-persist在一个 react native 项目中,它在大量设备上运行得很好除了 Android 7 .我正在尝试调试为什么我的本地存储也不持久的问题,并发现了这一点: 以
我想在我的 React Native 应用程序中保留用户的帐户凭据(即用户名和密码)。我应该使用 AsyncStorage ? 换句话说,我想知道是否以及如何AsyncStorage保护其内容。 do
我正在尝试从异步存储中获取项目。 componentDidMount() { console.log('componentDidMount') AsyncStorage.getItem
我的应用程序从网络服务器下载图像并保存它们,但我不确定将它们保存在哪里,是否有图像的本地存储? 谢谢 最佳答案 试试 rn-fetch-blob 你可以 创建文件 删除文件 创建目录 读取文件 下载文
我无法使用 AsyncStorage setItem。以下是我的代码。因此,我从 TextInput 获取状态名称,然后将其存储在 TouchableOpacity 的 AsyncStorage on
我是 React 原生环境的新手,我正在尝试构建一个应用程序,我在其中使用 AsyncStorage 来保存用户首选项。 我无法保存/获取任何东西并且低于警告,例如, [Unhandled promi
有什么方法可以同步我通过asyncStorage获取的数据吗? 我在 BaseAction.js 中获取数据 import { AsyncStorage } from 'react-native';
我有一个react-native应用程序,我在其中调用一个api,它应该返回JSON,但我只是未定义。 export function fetchFromAPI() { AsyncStorage.
我试图用这个存储日期:https://github.com/react-native-community/datetimepicker 问题是我希望将日期保存在 AsyncStorage 中,可能还存
如何在 Asyncstorge 中设置多个值?因为我正在尝试设置 token和 user_id .这些是服务器响应值。 这就是响应的样子 json { error: 0, data: 'User
我是一名优秀的程序员,十分优秀!