Gram w gry z draft-js przez Facebooka, ale nie mogę w rzeczywistości dowiedzieć się, jak uzyskać wyjście html z edytora. W poniższym przykładzie konsola.log wyświetla pewne właściwości _map
, ale wydaje się, że nie zawierają one mojej rzeczywistej zawartości?Nie mogę uzyskać danych wyjściowych html z wersji draft-js?
class ContentContainer extends React.Component {
constructor(props) {
super(props);
this.state = {
value: '',
editorState: EditorState.createEmpty()
};
this.onChange = (editorState) => this.setState({editorState});
this.createContent = this.createContent.bind(this);
}
createContent() {
console.log(this.state.editorState.getCurrentContent());
}
render() {
const {editorState} = this.state;
const { content } = this.props;
return (
<Template>
<br /><br /><br />
<ContentList content={content} />
<div className="content__editor">
<Editor editorState={editorState} onChange={this.onChange} ref="content"/>
</div>
<FormButton text="Create" onClick={this.createContent.bind(this)} />
</Template>
);
}
}
import {convertFromRaw, convertToRaw} z 'Draft-js'; –