AsyncStorage React Native保存数组

时间:2017-09-18 06:04:11

标签: javascript arrays react-native expo asyncstorage

我试过保存一个数组,我试图按照文档但是失败了。我应该如何编写它以便它不会给我各种警告和错误。

错误:

  • 在我尝试设置项目
  • 时收到了[对象]
  • 有一个对象而不是一个数组
  • 尝试分配给只读属性
  • 期待一个字符串,得到一个数组

以下是代码:App.js



 import React from "react";
 import {
  StyleSheet,
  Text,
  View,
  TextInput,
  ScrollView,
  TouchableOpacity,
  KeyboardAvoidingView,
  AsyncStorage
} from "react-native";
import Note from "./app/components/note";

export default class App extends React.Component {
 state = {
    noteArray: [],
    noteText: ""
};

render() {
    let notes = this.state.noteArray.map((val, key) => {
        return (
            <Note
                key={key}
                keyval={key}
                val={val}
                deleteMethod={() => this.deleteNote(key)}
            />
        );
    });

    return (
        <KeyboardAvoidingView behavior="padding" style={styles.container}>
            <View style={styles.header}>
                <Text style={styles.headerText}>Tasker</Text>
            </View>

            <ScrollView style={styles.scrollContainer}>{notes}</ScrollView>

            <View style={styles.footer}>
                <TouchableOpacity
                    onPress={this.addNote.bind(this)}
                    style={styles.addButton}
                >
                    <Text style={styles.addButtonText}>+</Text>
                </TouchableOpacity>

                <TextInput
                    style={styles.textInput}
                    placeholder="Enter Task..."
                    placeholderTextColor="white"
                    underlinedColorAndroid="transparent"
                    onChangeText={noteText => this.setState({ noteText })}
                    value={this.state.noteText}
                />
            </View>
        </KeyboardAvoidingView>
    );
}

addNote() {
    if (this.state.noteText) {
        var d = new Date();
        this.state.noteArray.push({
            date:
                d.getFullYear() +
                "/" +
                (d.getMonth() + 1) +
                "/" +
                d.getDate(),
            note: this.state.noteText
        });
        this.setState({ noteArray: this.state.noteArray });
        this.setState({ noteText: "" });
    }

    //AsyncStorage.setItem() How do I write it so no errors occur
    alert({ noteArray: this.state.noteArray });
}
}
&#13;
&#13;
&#13;

额外注意:错误在Android和iOS手机上的Expo App上显示

提前致谢!

1 个答案:

答案 0 :(得分:1)

需要将数组和其他对象保存为AsyncStorage中的字符串。

AsyncStorage.setItem('arrayObjKey', JSON.stringify(myArray));

此外,如果您需要更新数组中的值,请使用AsyncStorage.multiMerge

来自React-Native文档:

  

将现有键值与输入值合并,假设两个值都是字符串化JSON。返回一个Promise对象。