gpt4 book ai didi

react-native - 如何打印控制台登录 react 原生Android?

转载 作者:行者123 更新时间:2023-12-04 04:39:20 26 4
gpt4 key购买 nike

我正在使用下面的代码在 React Native 中打印控制台日志,但我收到错误找不到变量 v:

import React, 
{
AppRegistry,
Component,
StyleSheet,
Text,
View,

} from 'react-native';
var ConsolePanel = require('react-native-console-panel').displayWhenDev();


class RanD extends Component {
render() {
return (
<View style={styles.container}>

<Text>
Hit me!
</Text>

<View>
{ConsolePanel}
</View>
</View>
);
}
}

这个错误怎么解决??

最佳答案

删除这一行:

var ConsolePanel = require('react-native-console-panel').displayWhenDev();

并删除:
{ConsolePanel}

要在 React Native 中将某些内容记录到控制台,只需执行以下操作:
console.log('Hi from React Native');

要查看控制台输出,如果您使用的是 Mac OS 或 Linux,请在终端窗口中运行:
$ adb logcat | grep ReactNativeJS

如果您使用的是 Windows,请参阅此 StackOverflow 问题:
How to easily view and filter Android's logcat in Windows?

读取日志也记录在 Getting Started 中。指导。

更新 :您现在可以运行 react-native log-iosreact-native log-android在控制台中查看日志。

关于react-native - 如何打印控制台登录 react 原生Android?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36750531/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com