根据本机

时间:2017-05-23 13:39:41

标签: checkbox react-native onclick show-hide native-base

在设置页面中,我选中了一个复选框作为默认值。如果用户取消选中它,则应用程序中的所有图像都将被隐藏,并且用户无法在整个应用程序中看到任何图像。 我想我需要控制复选框的状态(选中或不选中),单击/按下复选框时更改该值,将新值传递给所有应用程序( HOW?),然后基于该值,我可以决定是否显示图像。

基本上,我的问题是访问该状态值然后决定要显示的内容。 这是我在设置页面中使用的代码:

设置页面:

     constructor(props) {
                super(props);

                this.state ={
                    status:false
                }
            };

        toggleStatus(){
            this.setState({
                status:!this.state.status
            });

 //I even hardcoded it to false but i keep getting null 

       AsyncStorage.setItem('myCheckbox',JSON.stringify(false));
                //AsyncStorage.setItem('myCheckbox',JSON.stringify(this.state.status));

                }
        ...
        render() {
        return(
        <TouchableOpacity onPress={()=>this.toggleStatus()}>
            <Text>
                press me to change state 
            </Text>
        </TouchableOpacity>

第二页:我需要访问存储在asyncStorage中的值

componentDidMount() {
        const value =   AsyncStorage.getItem('myCheckbox', (value) => {
            JSON.parse(value) 
            console.log("my check box value ", value)
        });

    }

我不断进入控制台: enter image description here

这段代码运行正常,每次按下它都会将状态值从false更改为true

UPDATE 尝试存储一个没有等待的简单字符串 在设置页面中:

 toggleStatus() {
        this.setState({
            status: !this.state.status
        });
        AsyncStorage.setItem("myCheckbox", "save me");

        console.log("in the toggle status function", this.state.status)
    }

在我使用的页面中:

componentDidMount(){

        let value = AsyncStorage.getItem("myCheckbox")

        console.log('in the other page i get ', value)

        }

我进入控制台:enter image description here 怎么了?!

PS:我使用原生基础,我想知道我是否可以在复选框中执行onPress而不是touchableOpacity

2 个答案:

答案 0 :(得分:1)

您应该使用redux

http://redux.js.org/

答案 1 :(得分:0)

您可以使用AsyncStorage作为全局storage机制。

在这种情况下,要访问应用的任何其他部分中的变量。

try {
  const value = await AsyncStorage.getItem('myCheckbox');
  if (value !== null){
    console.log(value);
  }
} catch (error) {
  // Error retrieving data
}

并将其保存在toggleStatus

您可以使用:

try {
  await AsyncStorage.setItem('myCheckbox', 'myValue');
} catch (error) {
  // Error saving data
}

因此,每次打开和关闭应用程序时,状态都会像以前一样可用。您可以从react-native导入if。

import { AsyncStorage } from 'react-native';