我需要将道具传递给我的初始状态以获得编辑表单(因为我希望表单的值等于状态)但我似乎无法使其工作。组件不会将props提供给initialState,因为它首先使用空道具加载,我认为由于createContainer。我尝试了很多东西(componentDidMount,WillMount,WillReceiveProps ......)但是没有成功让它工作。代码如下,有任何想法可以提供帮助吗?
import React from 'react';
import PropTypes from 'prop-types';
import { Meteor } from 'meteor/meteor';
import moment from 'moment';
import { createContainer } from 'meteor/react-meteor-data';
import { Blogposts } from './../api/blogposts';
export class BlogpostEditItem extends React.Component {
constructor(props){
super(props);
this.state = {
title: this.props.blogpost.title,
body: this.props.blogpost.body
}
}
handleBodyChange(e) {
const body = e.target.value;
this.setState({ body });
}
handleTitleChange(e) {
const title = e.target.value;
this.setState({ title });
}
onSubmit(e) {
e.preventDefault();
this.props.call('blogposts.update', this.props.blogpost._id, this.state.title, this.state.body,);
}
renderEditForm() {
return(
<div>
<input onChange={this.handleTitleChange.bind(this)} value={this.state.title} placeholder="Title" type="text"/>
<textarea onChange={this.handleBodyChange.bind(this)} value={this.state.body} placeholder="Body"></textarea>
<button onClick={this.onSubmit.bind(this)}>Submit Blogpost</button>
</div>
)
}
render() {
return (
<div>
{ this.props.blogpost ? this.renderEditForm() : 'Pas de post' }
</div>
);
}
}
export default createContainer(({params}) => {
Meteor.subscribe('blogposts');
return {
blogpost: Blogposts.findOne(params.id),
call: Meteor.call
}
}, BlogpostEditItem)
我还尝试将props作为defaultValue传递,并将状态保持为值,但不允许在表单上同时使用两者。知道如何解决我的问题吗? 提前谢谢。
答案 0 :(得分:2)
内部构造函数为props
而不是this.props
在构造函数之外,您应该继续this.props
constructor(props){
super(props);
this.state = {
title: props.blogpost.title,
body: props.blogpost.body
}
}