CRNA,genymotion,世博奇怪的错误

问题描述 投票:3回答:2

我正在使用genymotion来运行我的React Native开发环境。当一个特定的组件加载时,我得到console.error消息:there was a problem sending log messages to your development environment有一个奇怪的堆栈跟踪,使用<unknown>代替几个命名函数。

我将问题缩小到我的代码中的一个组件:

class Questions extends React.Component {
  constructor(props){
    super(props);
    this.state = {
                  style: 'all',
                  selected: ''}
  }
  render = () => {
    return (
      <View style={styles.questions}>
        <ScrollView>
          {(this.props.questions && this.state.style == 'all')&&
            this.props.questions.map(post => {
              return (
                <TouchableHighlight onPress={() => this.loadQuestion(post)} key={post.ID + new Date(post.post_date)} style={styles.questionCard} >
                  <View style={styles.questionCard} >
                    <View style={styles.title}>
                      <Text style={{color: 'white'}}>{post.post_title}</Text>
                      <Text style={{color: 'white'}}> - {post.display_name} {utils.timeSince(new Date(post.post_date))}</Text>
                    </View>
                  </View>
                </TouchableHighlight>
              )
            })
          }
        </ScrollView>
      </View>
    )
  }
}

每当这个组件加载时,我得到了上面提到的console.error。我知道这不是很多,我甚至不期待答案,但我不知所措。

如果你谷歌确切的错误消息你将在Github上找到一个没有解决方案的问题,提到它可能是expo sdk中的错误(这是有意义的)并链接404s的另一个问题。

react-native genymotion expo
2个回答
11
投票

好吧,我想我解决了,问题实际上是在我的utils函数timeSince。我有一个迷失的console.log()语句,当我删除它时,错误就消失了。显然,使用此配置,您无法从内部资产调用console.log()。

编辑:好的,所以经过一些进一步的调试,当你尝试console.log()一个对象时,抛出此错误,它与日志的来源无关。


0
投票

好吧,我想我解决了,问题实际上是在我的utils函数timeSince。我有一个迷失的console.log()语句,当我删除它时,错误就消失了。显然,使用此配置,您无法从内部资产调用console.log()。

编辑:好的,所以经过一些进一步的调试,当你尝试console.log()一个对象时,抛出此错误,它与日志的来源无关。

我希望这能为这个“错误”的起源提供更多的启示:

你所指的对象实际上是来自调用的响应,并且它不喜欢它的大小。它不是任何对象,只是来自呼叫的response对象。如果您尝试对您想要的部件进行解构,那么它就会消失

© www.soinside.com 2019 - 2024. All rights reserved.