0
我有一個正在由應用程序狀態更改更新的redux-form字段(源文件)。狀態值正在正確傳遞到該字段,但點擊提交時,只提交第一個字段(名稱)(我填寫交互)。Redux-form:來自狀態的字段值未提交
我在這裏做錯了什麼?
import React, { Component, PropTypes } from 'react';
import { reduxForm, Field } from 'redux-form';
import { connect } from 'react-redux';
import { Link } from 'react-router';
import * as actions from '../../actions/job_actions';
import UploadPage from './upload_page';
const renderField = field => (
<div>
<label>{field.input.label}</label>
<input {...field.input}/>
{field.touched && field.error && <div className="error">{field.error}</div>}
</div>);
class JobForm extends Component {
handleFormSubmit(formProps) {
this.props.createJob(formProps); }
render() {
const { handleSubmit } = this.props;
return (
<div>
<form onSubmit={handleSubmit(this.handleFormSubmit.bind(this))}>
<label>Title</label>
<Field name="name" component={renderField} type="text" />
<label>Input File</label>
<Field name="source_file" component={() => {
return (
<div class="input-row">
<input type="text" value={this.props.uploadedFile} />
</div>
)
}} />
<button type="submit" className="btn btn-
primary">Submit</button>
</form>
</div>
);
};
}
const form = reduxForm({ form: 'JobForm' });
function mapStateToProps({uploadedFile}) { return { uploadedFile }; }
export default connect(mapStateToProps, actions)(form(JobForm));
我想要redux-form來包括我的領域。嘗試渲染它,但它沒有解決問題。表格仍然沒有提交。我已將字段更改爲:,並將以下內容放在render()中,否則我無法訪問「this.props.uploadFile 「:const renderFileField = field =>( ); –
baerlein
更新:如果我觸摸一次該字段,它將起作用。 – baerlein