Ho giocato con draft-js su Facebook, ma non riesco a capire come ottenere l'output html dell'editor. Il file console.log nel seguente esempio restituisce alcune proprietà _map
, ma non sembrano contenere il mio contenuto effettivo?Non riesco a ottenere l'output html da 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>
);
}
}
importazione {convertFromRaw, convertToRaw} dal 'progetto-js'; –