我正在使用material-ui date-picker字段实现redux-form。日期在字段中完美设置,但当我尝试将其发送到日期的后端API格式时:
BeginDate_1: Tue Nov 14 2017 15:03:43 GMT+0530 (IST)
我正在尝试将此格式更改为“YYYY-mm-dd”格式,然后再将其发送到后端API。
我尝试momentjs
进行格式化,但我无法得到我想要的结果。
这是我尝试过的:
Home.js
import React, {Component} from 'react';
import {Field, reduxForm} from 'redux-form';
import DatePicker from 'material-ui/DatePicker';
import {connect} from 'react-redux';
import * as moment from 'moment';
class Home extends Component {
renderCalendarField= ({
input,
label,
meta: {touched, error},
children,
...custom
}) => (
<DatePicker
floatingLabelText={label}
errorText={touched && error}
{...input}
value = {input.value !== ''? new Date(input.value) : null}
onChange={(event, value) => input.onChange(value)}
children={children}
{...custom}
formatDate={(date) => moment(date).format('YYYY-MM-DD')}
/>
)
render() {
const startDate = new Date();
const {handleSubmit} = this.props;
return (
<form onSubmit={handleSubmit(this.onSubmit.bind(this))}>
<div>
<Field name="BeginDate_1" component={this.renderCalendarField} label="DEPARTURE" minDate={startDate} />
</div>
<div>
<button type="submit">
Submit
</button>
</div>
</form>
);
}
}
const LogInForm = reduxForm({
form: 'MaterialUiForm', // a unique identifier for this form
validate
})(Home);
export default connect(mapStateTOProps, {getCity})(LogInForm);
控制台输出仍然是:
BeginDate_1:Tue Nov 14 2017 15:03:43 GMT+0530 (IST)
如何以YYYY-mm-dd
格式格式化此日期?
答案 0 :(得分:3)
formatDate
上的 DatePicker
道具用于format
Display Date
,而不是实际值。您需要做的是,使用onSubmit
moment
函数中的值
onSubmit (values) {
const beginDate = moment(values.BeginDate_1).format('YYYY-MM-DD')
console.log(beginDate);
//other things
}
根据 material-ui/DatePicker docs :
formatDate :功能
调用此函数以格式化输入中显示的日期 字段,应该返回一个字符串。默认情况下,如果没有语言环境和 提供DateTimeFormat日期对象的格式为
ISO 8601 YYYY-MM-DD.
签名:
function(date: object) => any date: Date object to be formatted. returns (any): The formatted date.