• react富文本编辑器


    首先安装两个插件

    yarn add react-draft-wysiwyg draftjs-to-html --save

    使用的代码如下

    import React from 'react'
    import {Button,Card,Modal} from 'antd'
    import {Editor} from 'react-draft-wysiwyg'
    import 'react-draft-wysiwyg/dist/react-draft-wysiwyg.css'
    import draftjs from 'draftjs-to-html'
    export default class RichText extends React.Component{
    
        state = {
            showRichText:false,
            editorContent: '',
            editorState: '',
        };
    
        handleClearContent = ()=>{
            this.setState({
                editorState:''
            })
        }
    
        handleGetText = ()=>{
            this.setState({
                showRichText:true
            })
        }
    
        onEditorChange = (editorContent) => {
            this.setState({
                editorContent,
            });
        };
    
        onEditorStateChange = (editorState) => {
            this.setState({
                editorState
            });
        };
    
        render(){
            const { editorContent, editorState } = this.state;
            return (
                <div>
                    <Card style={{marginTop:10}}>
                        <Button type="primary" onClick={this.handleClearContent}>清空内容</Button>
                        <Button type="primary" onClick={this.handleGetText}>获取HTML文本</Button>
                    </Card>
                    <Card title="富文本编辑器">
                        <Editor
                            editorState={editorState}
                            onContentStateChange={this.onEditorChange}
                            onEditorStateChange={this.onEditorStateChange}
                        />
                    </Card>
                    <Modal
                        title="富文本"
                        visible={this.state.showRichText}
                        onCancel={()=>{
                            this.setState({
                                showRichText:false
                            })
                        }}
                        footer={null}
                    >
                        {draftjs(this.state.editorContent)}
                    </Modal>
                </div>
            );
        }
    }

    效果

  • 相关阅读:
    POJ2503 Babelfish
    POJ3687 Labeling Balls(拓扑)
    POJ2251 Dungeon Master(bfs)
    POJ1321 棋盘问题(dfs)
    POJ3009 Curling 2.0(DFS)
    POJ2248 A Knight's Journey(DFS)
    POJ3080 Blue Jeans
    POJ1260 Pearls(dp,矩阵链乘法)
    POJ3349 Snowflake Snow Snowflakes(哈希)
    POJ2479 Maximum sum(dp)
  • 原文地址:https://www.cnblogs.com/mosquito18/p/9787816.html
Copyright © 2020-2023  润新知