React Native Moment Error:期望一个组件类,得到[object Object]

时间:2017-10-09 19:38:01

标签: react-native momentjs

我至少阅读了八篇关于标题中错误的Stack Overflow帖子,但由于我将<>中的所有内容都大写并且不使用HTML标记,因此我还没有解决该问题。使用Moment文档作为指导,我试图在第一个<Moment></Moment>中显示一周中的当前日期,并在第二个中显示2017年10月9日的日期。下面我粘贴了我的App.js.我使用create-react-native app开始。我该怎么做呢?

import React, { Component } from 'react';
import { StyleSheet, Text, View } from 'react-native';
import Moment from 'react-moment';


export default class App extends React.Component {
  render() {
    return (
      <View style={styles.container}>
        <Moment format="dddd"></Moment>
        <Moment format='MMMM Do YYYY'></Moment>
        <Text>Today at a Glance</Text>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
      flex: 1,
      backgroundColor: '#fff',
      alignItems: 'center',
      justifyContent: 'center',
  },
});

1 个答案:

答案 0 :(得分:2)

我有同样的问题,我在doc中发现了这个问题: <Moment element={Text} >1976-04-19T12:59-0500</Moment>

我们需要传递元素。错误消息没有帮助,但这样做对我有用

doc链接: https://github.com/headzoo/react-moment#usage-with-react-native