首页 > 解决方案 > pouchdb/react,如果数据库中没有结果,则将状态值设置为零

问题描述

只要数据库中有内容,我就有一段代码可以完美运行,但这会导致应用程序在首次加载时崩溃,因为在新部署的数据库中没有结果集。现在,如果我设置数据并加载此屏幕,它会从 pouchdb 获取结果集并获取文档,然后根据文档索引设置状态值。

Cuerrently 在新负载上,我收到错误,它无法读取未定义的属性newBaselineDocs[0]

我需要更改它,以便如果数据库没有结果,那么我将这些值的状态设置为零。

例如,如果没有结果,那么如果有意义,ldl: newBaselineDocs[0].ldl我会使用。ldl: 0我知道它会类似于 if/else,但我真的不知道如何使用 pouchdb 结果逻辑来做到这一点。

setBaselineMax = () => {
    this.state.baselineDB.db.find({
      selector: {
        $and: [
          {_id: {"$gte": null}},
          {ldl: {$exists:true}},
          {hdl: {$exists:true}},
          {totalChol: {$exists:true}},
          {weight: {$exists:true}},
          {water: {$exists:true}},
          {sleep: {$exists:true}},
          {activity: {$exists:true}},
          {heartRate: {$exists:true}},
          {netCalories: {$exists:true}},
          {bloodPresure: {$exists:true}},
          {whiteCount: {$exists:true}},
          {redCount: {$exists:true}},
          {trig: {$exists:true}},
          {glucose: {$exists:true}},
          {oxygen: {$exists:true}},
          {psa: {$exists:true}},
          {alcohol: {$exists:true}},
          {createdAt: {$exists: true}}

        ]
      },
      fields: ['_id','ldl','hdl','totalChol','weight','water','sleep','activity','heartRate','netCalories','bloodPresure','whiteCount','redCount','trig','glucose','oxygen','psa', 'alcohol'],
      sort: [{'_id':'asc'}],
      limit: 1
    }).then(result => {
      console.log('baseline result');
      console.log(result);

      const newBaselineDocs = result.docs;

      console.log('this is basline data from app');
      console.log(newBaselineDocs);

      this.setState(prevState => ({
        baselineRecord: {                   // object that we want to update
            ...prevState.baselineRecord,    // keep all other key-value pairs
            ldl: newBaselineDocs[0].ldl,
            hdl: newBaselineDocs[0].hdl,
            totalChol: newBaselineDocs[0].totalChol,
            weight: newBaselineDocs[0].weight,
            water: newBaselineDocs[0].water,
            sleep: newBaselineDocs[0].sleep,
            activity: newBaselineDocs[0].activity,
            heartRate: newBaselineDocs[0].heartRate,
            netCalories: newBaselineDocs[0].netCalories,
            bloodPresure: newBaselineDocs[0].bloodPresure,
            whiteCount: newBaselineDocs[0].whiteCount,
            redCount: newBaselineDocs[0].redCount,
            trig: newBaselineDocs[0].trig,
            glucose: newBaselineDocs[0].glucose,
            oxygen: newBaselineDocs[0].oxygen,
            psa: newBaselineDocs[0].psa,
            alcohol: newBaselineDocs[0].alcohol     // update the value of specific key
        }
      }))

标签: reactjspouchdb

解决方案


这应该在评论中,但这将是一个丑陋的混乱。该错误是预期的,因为result.docs它是空的,而您的代码假定它永远不会为空。

因为newBaselineDocs是空的,因为result.docs是空的,newBaselineDocs[0][someProperty]所以是未定义的。

这很容易解决,只需检查 result.docs 是否为空,如果是,请使用“全面为零”方法进行初始化,例如

// snip
}).then(result => {
  let doc;
  if(result.docs.length === 0) {
    // initialize doc with default values
    doc = {
      //  default property values
    };
  } 
  // do something with doc
});

推荐阅读