未捕获的TypeError:_moment2.default.date不是React app

时间:2017-02-09 20:02:41

标签: javascript reactjs momentjs

当我尝试在构造函数,componentWillMount或componentDidMount中使用Moment.js中的日期时,我收到错误:

Uncaught TypeError: _moment2.default.date is not a function

我没有在npm之外使用Webpack或任何特定的构建工具。这是我的相关代码:

import React from 'react';
import Moment from 'moment';

export default class Date extends React.Component {
  constructor() {
    super();
    this.state = { day: '',
                   month: '',
                   year: '',
                   weekday: ''
                 };
  }

  componentDidMount() {
    this.setDate();
  }

  setDate() {
    this.state.day = Moment.date();
    this.state.month = Moment.format('MMM');
    this.state.year = Moment.year();
    this.state.weekday = Moment.format('dddd');
  }

这是因为在渲染组件时Moment尚未完全加载,还是其他东西?我怎样才能解决这个问题?

当我在render()函数中调用Moment时,我没有收到此错误。但是,我需要状态中的日期信息,以便我可以根据日期更新其他应用程序组件。

1 个答案:

答案 0 :(得分:3)

你设置状态是不正确的,并使用像这样的时刻:Moment().,试试这个:

setDate() {
      this.setState({
           day : Moment().date(),
           month : Moment().format('MMM'),
           year : Moment().year(),
           weekday : Moment().format('dddd')
      });
  }