简体   繁体   English

在 React Native 中显示函数的值

[英]Display the value of function in react native

I have this function where i have to return/display the value of results, I'am using react native and couchDB as my database this code is inside of a flatlist.我有这个函数,我必须返回/显示结果的值,我使用 react native 和 couchDB 作为我的数据库,这个代码在一个平面列表中。 I have tried this one but it is not working.我试过这个,但它不起作用。 please help me with this one.请帮我解决这个问题。

 vacant (room) {
    
      localNoteDb
          .find({
              selector: {
                status: "vacant",
                room_type: room
              },
              fields: ['_id', 'room_type', 'room_no' ,'price','status','user', 'updated_at', 'hour_status', 'price_per'],
              use_index: nameIndex_status.status,
              sort: [{status: 'asc'}]
             
          })
          .then(result => {
               console.log('getListNoteFromDb', result)
             let getLenght = result.doc
    const results= Object.keys(result).length
    console.log('value of results: ', results)
    return(
      <Text> {Object.keys(result).length}</Text>
    );
          })
      
    }

Try this way试试这个方法

function Example() { 

  const [count, setCount] = useState(0);


  // Similar to componentDidMount
  useEffect(() => {
    vacant(...);
  });


  const vacant (room) {
    
      localNoteDb
          .....
          .....
          .then(result => {
               console.log('getListNoteFromDb', result)
               let getLenght = result.doc
               const results= Object.keys(result).length
               setCount(results); <-- This way -->
          });          
    }

  return (
     <Text> {count}</Text>
  );
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM