我至少阅读了八篇关于标题错误的 Stack Overflow 帖子,但我还没有解决这个问题,因为我将所有内容都大写了 <>
s并且不使用 HTML 标签。 使用 Moment 文档作为指南,我尝试在第一个<Moment></Moment>
显示一周中的当前日期,在第二个显示像 2017 年 10 月 9 日这样的日期。 下面我粘贴了我的应用程序.js。 我使用创建-反应-本机应用程序来开始使用。 我应该怎么做?
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',
},
});
我有同样的问题,我在文档中找到了这个: <Moment element={Text} >1976-04-19T12:59-0500</Moment>
我们需要传递元素。错误消息没有帮助,但这样做对我有用
文档链接:https://github.com/headzoo/react-moment#usage-with-react-native