React-Native更新AsyncStorage项

时间:2017-06-12 16:17:40

标签: javascript react-native asyncstorage

每次汽车更改价格时,我的应用都会向用户发送通知。它使用每小时运行的代码完成。

代码如下:

  backgroundData(){
      BackgroundTimer.setInterval(() => {

        AsyncStorage.getItem('key').then(JSON.parse).then(items => {
          this.setState({value: items});
        })

        if(!this.state.value == 0 || !this.state.value == null){
          const promises = this.state.value.map((item, index) =>
            fetch(`URL/GetDetalhesViatura?CarID=${item[0]}`)
             .then(response => response.json())
          )
          Promise.all(promises).then(viaturas => this.setState({viaturas: flatten(viaturas)}))

          const newItem = []
          this.state.viaturas.map((item, index) =>
            newItem.push([item.Preco, item.CodViatura]),
            this.setState({ stateArray: newItem })
          )

          const newItem2 = []
          this.state.value.map((item, index) =>
            newItem2.push([item[1], item[0]]),
            this.setState({stateArray2: newItem2})
          )

          var results = new Array();
          //CODE TO CHECK ARRAYS FOR DIFFERENT PRICES
          this.setState({results: results})

          if(!this.state.results == 0 || !this.state.results == null){
            const promises = this.state.results.map((item, index) =>
              fetch(`URL/GetDetalhesViatura?CarID=${item[1]}`)
               .then(response => response.json())
            )
            Promise.all(promises).then(viaturas2 => this.setState({viaturas2: flatten(viaturas2)}))

            this.state.viaturas2.map((item, index) =>
              PushNotification.localNotification({
                message: "Notification",
              })
            )
          }
        } else {
          console.log('empty')
        }
      }, 9999999);
  }

首先,它获取AsyncStorage上的当前数据。如果它有数据,它会从API中获取新数据,然后比较两个数据,如果有不同的价格,它会向用户发送通知。

问题是我需要使用新价格更新每辆车的'key'(如果价格已更改),否则应用会继续向用户发送通知。

1 个答案:

答案 0 :(得分:2)

我无法通过AsyncStorage获得我想要的东西,因此我不得不使用名为simple-store的包装器:https://github.com/jasonmerino/react-native-simple-store

我不得不改变很多代码,但后来我能够更改我想要的数据并将其保存。

使用简单存储,它可以将每辆汽车保存在同一个键中的单个数组或对象上,这样可以更轻松地操作数据。