我需要将序列化内容状态存储到本地存储中。我试图转换数据并使用数据转换帮助程序将其恢复。 State包含一些自定义内联样式。这是一个示例代码:
var oldEditorState = this.state.editorState;
var editorState = RichUtils.toggleInlineStyle(oldEditorState, myCustomStyle);
editorState = RichUtils.toggleInlineStyle(editorState, 'BOLD')
var contentState = editorState.getCurrentContent();
var rawContent = DraftJs.convertToRaw(contentState);
var contentBlocks = DraftJs.convertFromRaw(rawContent);
var contentState = ContentState.createFromBlockArray(contentBlocks);
var nextEditorState = EditorState.createWithContent(contentState);
this.setState({editorState: nextEditorState});
不幸的是,这种方法失去了自定义样式。但它适用于预定义(例如BOLD)。为什么?我该如何解决这个问题?