How to do logging in React Native?

前端 未结 30 3599
不思量自难忘°
不思量自难忘° 2020-11-30 17:08

How can I log a variable in React Native, like using console.log when developing for web?

30条回答
  •  余生分开走
    2020-11-30 17:45

    Use console.log, console.warn etc.

    As of React Native 0.29 you can simply run the following to see logs in the console:

    $ react-native log-ios
    $ react-native log-android
    

提交回复
热议问题