我是新来的,我有这个路由组件,在这个里面我正在创建我的新
数据的每一行的元素,但我也想添加表单,以便用户可以创建一个新的段落。有人可以帮我吗??
import React, { Component } from 'react';
import axios from 'axios';
class Comments extends Component {
state={
Comment:[]
}
componentDidMount() {
const { commentId }=this.props.location.state;
axios.get(`./hn_data/${commentId}.json`)
.then((res) => this.setState({ Comment: res.data }));
}
render() {
console.log(this.state.Comment);
return this.state.Comment.map(comment=>(
<p>{comment.text}</p>
))
}
}
export default Comments;`
慕桂英546537
相关分类