【发布时间】:2020-05-15 00:19:43
【问题描述】:
我想使用时刻库将日期翻译成法语。
我创建了一个 android 版本,但是当我打开组件时它崩溃了。
我的代码是:
import Moment from 'moment';
// i fixed the error
// var moment = require('moment');
//require('moment/locale/fr');
//moment.locale('fr');
render() {
....
{
this.state.notifications.map((notification, i) => (
Moment.updateLocale('fr', {
// the config here
// translate to french
}),
notification.type === 'Partage de contact' ?
<ListItem
key={i}
...
subtitle={`Date : ${Moment(notification.date).format('dddd D MMMM, YYYY')}`}
bottomDivider
/>
:
<ListItem
...
subtitle={`Date : ${Moment(notification.date).format('dddd D MMMM, YYYY')}`}
bottomDivider
/>
))
}
...
}
【问题讨论】:
标签: android react-native build momentjs expo