首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >如何在REACTJS中创建嵌套的JSON请求

如何在REACTJS中创建嵌套的JSON请求
EN

Stack Overflow用户
提问于 2021-07-09 01:36:34
回答 1查看 29关注 0票数 0

我尝试从Employee ID字段中获取值,并将其添加到JSON中的对象属性employee:{id:}中。JSON中的其他元素工作得很好,这是我无法理解的嵌套元素。

这是为员工提交工时记录卡的应用程序。后端如果是用java编写的。我已经编写并测试了API。现在只想用React编写一些UI代码。

代码语言:javascript
运行
复制
import { Component } from "react";
import {Form, Row, Col, Button} from 'react-bootstrap';
import axios from 'axios';

class TimeCard extends Component {
    constructor(props) {
        super(props);
        this.state = {
            date : '',
            in : '',
            out : '',
            **employee : {
                id : ''**
            }
        }
    }

    handleChange = (e) => {
        this.setState({[e.target.name] : e.target.value});}

    async SubmitTime (e) {
        console.log(this.state);
        let response = axios.post('http://.../timecard/add', this.state);        
        console.log(response);
        console.log("this is executed");
    }

    render () {
        const {date, timein, out, **employee**} = this.state;
        return (
            <div>
            <br></br>
            <h2 className="display-6">Daily Timecard</h2>
            <Form>
            <br></br>
                <Row>
                    <div className = 'col-xs-4'>
                        <Col>
                            <**Form.Control onChange = {this.handleChange.bind(this)}  type = 'text' placeholder = 'Employee ID' name = 'id' value = {employee.id} />**
                        </Col>
                    </div>                     
                </Row>
                <br></br>
                <Row>
                <div className = 'col-xs-4'>
                        <Col>
                            <Form.Control onChange = {this.handleChange.bind(this)} type = 'date' name = 'date' value = {date} />
                        </Col>
                    </div>
                </Row>
                <br></br>
                <Row>
                    <div className = 'col-xs-4'>
                        <Col>
                            Time In <Form.Control onChange = {this.handleChange.bind(this)} type = 'time' name = 'in' value = {timein} />
                        </Col>
                    </div>
                    <div className = 'col-xs-4'>
                        <Col>
                            Time Out <Form.Control onChange = {this.handleChange.bind(this)} type = 'time' name = 'out'  value = {out}/>
                        </Col>
                    </div> 
                                        
                </Row>
                <br></br>
                <Row>
                <div>
                        <Col>
                            <Button onClick = {this.SubmitTime.bind(this)} >Submit Timecard</Button>
                        </Col>
                    </div>

                </Row>
            </Form>
            </div>
        )
    }
}

export default TimeCard;
EN

回答 1

Stack Overflow用户

发布于 2021-07-09 10:30:54

您可以从employee中解构嵌套属性id,如下所示。

代码语言:javascript
运行
复制
const {date, timein, out, employee: { id } } = this.state;
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/68310256

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档