admin管理员组文章数量:1278983
Currently practicing state and props in React and I have a rather large ponent which I am trying to split into a few smaller ponents, however I'm not sure how to pass data from one ponent to another.
The ponent currently contains a form with multiple inputs and renders them onSubmit. As far as I understand, the best way to do this is to put the form in it's own ponent and use props to then pass in the state of the parent ponent. But how can this be done with multiple inputs and ensure the handleChange and handleSubmit methods work.
Being new to React, i'm still confused as to how to call a method like onChange when it's defined in one ponent and called in another.
Here's what i've got so far (the one big ponent...):
export default class App extends Component {
constructor(props){
super(props);
this.state = {
post: {
name: "",
description: "",
level: "Junior",
salary: 30000
},
jobs: []
};
}
handleChange = e => {
const { name, value } = e.target;
this.setState(prevState => ({
post: { ...prevState.post, [name]: value }
}));
};
handleSubmit = e => {
e.preventDefault();
this.setState(prevState => ({
jobs: [...prevState.jobs, prevState.post],
post: { name: "", description: "", level: "", salary: 30000 }
}));
};
render() {
return (
<div className="App">
<nav>
<button className="btn btn-primary">Post it!</button>
</nav>
* This is the section i've been trying to put in a separate ponent... *
<div className="form-container">
<form>
<div className="form-group">
<input
className="col-12 form-control"
name="name"
onChange={this.handleChange}
type="text"
value={this.state.post.name}
placeholder="post name"
/>
</div>
<div className="form-group">
<textarea
className="col-12 form-control"
name="description"
onChange={this.handleChange}
type="text"
value={this.state.post.description}
placeholder="post description"
></textarea>
</div>
<div className="form-group">
<input
className="col-12 form-control"
name="salary"
onChange={this.handleChange}
type="number"
value={this.state.post.salary}
placeholder="post salary"
/>
</div>
<div className="form-group">
<select
className="form-control"
onChange={this.handleChange}
name="level"
value={this.state.post.level}>
<option>Junior</option>
<option>Mid</option>
<option>Senior</option>
<option>Any</option>
</select>
</div>
<button className="btn btn-primary" onClick={this.handleSubmit}>Submit</button>
</form>
</div>
<div className="post-container">
<ul>
{this.state.jobs.map((job, index) => (
<li key={index}>
<ul className="post-tile">
<li className="post-tile-name">{job.name}</li>
<li className="post-tile-level">{job.level}</li>
<li className="post-tile-description">{job.description}</li>
<li className="post-tile-salary">£{job.salary}</li>
</ul>
</li>
))}
</ul>
</div>
</div>
);
}
}
I've tried moving it and using as:
<Form
onChange={this.handleChange}
name={this.state.post.name}
description={this.state.post.description}
level={this.state.post.level}
/>
But not sure how to connect it all...any guidance would be really appreciated!
Currently practicing state and props in React and I have a rather large ponent which I am trying to split into a few smaller ponents, however I'm not sure how to pass data from one ponent to another.
The ponent currently contains a form with multiple inputs and renders them onSubmit. As far as I understand, the best way to do this is to put the form in it's own ponent and use props to then pass in the state of the parent ponent. But how can this be done with multiple inputs and ensure the handleChange and handleSubmit methods work.
Being new to React, i'm still confused as to how to call a method like onChange when it's defined in one ponent and called in another.
Here's what i've got so far (the one big ponent...):
export default class App extends Component {
constructor(props){
super(props);
this.state = {
post: {
name: "",
description: "",
level: "Junior",
salary: 30000
},
jobs: []
};
}
handleChange = e => {
const { name, value } = e.target;
this.setState(prevState => ({
post: { ...prevState.post, [name]: value }
}));
};
handleSubmit = e => {
e.preventDefault();
this.setState(prevState => ({
jobs: [...prevState.jobs, prevState.post],
post: { name: "", description: "", level: "", salary: 30000 }
}));
};
render() {
return (
<div className="App">
<nav>
<button className="btn btn-primary">Post it!</button>
</nav>
* This is the section i've been trying to put in a separate ponent... *
<div className="form-container">
<form>
<div className="form-group">
<input
className="col-12 form-control"
name="name"
onChange={this.handleChange}
type="text"
value={this.state.post.name}
placeholder="post name"
/>
</div>
<div className="form-group">
<textarea
className="col-12 form-control"
name="description"
onChange={this.handleChange}
type="text"
value={this.state.post.description}
placeholder="post description"
></textarea>
</div>
<div className="form-group">
<input
className="col-12 form-control"
name="salary"
onChange={this.handleChange}
type="number"
value={this.state.post.salary}
placeholder="post salary"
/>
</div>
<div className="form-group">
<select
className="form-control"
onChange={this.handleChange}
name="level"
value={this.state.post.level}>
<option>Junior</option>
<option>Mid</option>
<option>Senior</option>
<option>Any</option>
</select>
</div>
<button className="btn btn-primary" onClick={this.handleSubmit}>Submit</button>
</form>
</div>
<div className="post-container">
<ul>
{this.state.jobs.map((job, index) => (
<li key={index}>
<ul className="post-tile">
<li className="post-tile-name">{job.name}</li>
<li className="post-tile-level">{job.level}</li>
<li className="post-tile-description">{job.description}</li>
<li className="post-tile-salary">£{job.salary}</li>
</ul>
</li>
))}
</ul>
</div>
</div>
);
}
}
I've tried moving it and using as:
<Form
onChange={this.handleChange}
name={this.state.post.name}
description={this.state.post.description}
level={this.state.post.level}
/>
But not sure how to connect it all...any guidance would be really appreciated!
Share Improve this question asked Aug 7, 2018 at 13:02 Thomas AllenThomas Allen 8118 gold badges18 silver badges33 bronze badges 2-
1
If you want to create a separate
Form
ponent it might be a good idea to put all the form specific state in theForm
ponent, and just pass down a function as prop e.g.onSubmit
that you want to run when the form is submitted. – Tholle Commented Aug 7, 2018 at 13:08 -
You can check this codesandbox example which uses
Form.js
ponent. – Maxali Commented Aug 7, 2018 at 13:16
1 Answer
Reset to default 7It's right the way you are handling it.
Send post
data as 1 propForm
ponent and handle your handleChange
and handleSubmit
events from the main ponent.
check this codesandbox example which uses Form.js
ponent.
<Form
handleChange={this.handleChange}
post={this.state.post}
handleSubmit={this.handleSubmit}
/>
Form.js
pnent looks like:
import React from "react";
export default ({ handleChange, handleSubmit, post }) => {
return (
<div className="form-container">
<form>
<div className="form-group">
<input
className="col-12 form-control"
name="name"
onChange={handleChange}
type="text"
value={post.name}
placeholder="post name"
/>
</div>
<div className="form-group">
<textarea
className="col-12 form-control"
name="description"
onChange={handleChange}
type="text"
value={post.description}
placeholder="post description"
/>
</div>
<div className="form-group">
<input
className="col-12 form-control"
name="salary"
onChange={handleChange}
type="number"
value={post.salary}
placeholder="post salary"
/>
</div>
<div className="form-group">
<select
className="form-control"
onChange={handleChange}
name="level"
value={post.level}
>
<option>Junior</option>
<option>Mid</option>
<option>Senior</option>
<option>Any</option>
</select>
</div>
<button className="btn btn-primary" onClick={handleSubmit}>
Submit
</button>
</form>
</div>
);
};
本文标签: javascriptPass form input values to another component ReactStack Overflow
版权声明:本文标题:javascript - Pass form input values to another component React - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741243014a2364347.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论