我正在与Gatsbyjs设置联系表单,需要一个日期选择器。是否可以在无状态组件上使用react-dates?我尝试过但没有成功(因为the instructions指的是我实际上不知道如何表现的类组件。)
这是没有反应日期的表单示例(我使用的是Formik):
import React from 'react'
import { Formik, Form, Field, ErrorMessage } from 'formik'
function encode(data) {
return Object.keys(data)
.map(key => encodeURIComponent(key) + "=" + encodeURIComponent(data[key]))
.join("&");
}
const ContactForm = () => (
<>
<h1>TITLE</h1>
<Formik
initialValues={{ email: '', name: '', start: '', end: '', message: '' }}
onSubmit={(values) => {
fetch("/", {
method: "POST",
headers: { "Content-Type": "application/x-www-form-urlencoded" },
body: encode({
"form-name": "contact",
...values
})
})
.then(() => alert("Thanks!"))
.catch(error => alert(error))
}}
>
{({ isSubmitting }) => (
<Form name="contact" data-netlify="true" action="/grazie">
<input type="hidden" name="form-name" value="contact" />
<label>
<Field type="text" name="name" placeholder="Name and Surname" />
<ErrorMessage name="name" component="div" />
</label>
<br />
<label>
<Field type="email" name="email" placeholder="Email" required />
<ErrorMessage name="email" component="div" />
</label>
<br />
<button type="submit" disabled={isSubmitting}>Send</button>
</Form>
)}
</Formik>
</>
)
export default ContactForm
现在,因为它是一个无状态组件,所以我无法添加{this.etc.etc},所以我不知道如何配置react-dates。这是我应该添加的代码:
<DateRangePicker
startDate={this.state.startDate} // momentPropTypes.momentObj or null,
startDateId="your_unique_start_date_id" // PropTypes.string.isRequired,
endDate={this.state.endDate} // momentPropTypes.momentObj or null,
endDateId="your_unique_end_date_id" // PropTypes.string.isRequired,
onDatesChange={({ startDate, endDate }) => this.setState({ startDate, endDate })} // PropTypes.func.isRequired,
focusedInput={this.state.focusedInput} // PropTypes.oneOf([START_DATE, END_DATE]) or null,
onFocusChange={focusedInput => this.setState({ focusedInput })} // PropTypes.func.isRequired,
/>
答案 0 :(得分:0)
尝试像这样注入“ this”作为道具:
const ContactForm = (props) => ( ...
// props.that ....
)
// call it where you need it
<ContactForm
that = {this}
...
>
...
</ContactForm>
答案 1 :(得分:0)
如果您想使用this
,那么制作功能组件不是一个好用例,为什么不在这里制作类组件。真的很简单
答案 2 :(得分:0)
我在https://stackoverflow.com/a/55454138/2232626
的回答下解决了这个问题我刚刚使用日期选择器组件创建了一个组件,然后将其导入了Formik主页所在的位置。 这是一个有效的示例:https://codesandbox.io/s/723l233my1