"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."
패키지 설치
npm install --save @toast-ui/react-editor
기본 소스 : ES Modues 활용
import 'codemirror/lib/codemirror.css';
import '@toast-ui/editor/dist/toastui-editor.css';
import { Editor } from '@toast-ui/react-editor';
본문 삽입 소스
class PageView extends Component {
editorRef = React.createRef();
<Editor
initialValue="hello react editor world!"
previewStyle="vertical"
height="600px"
initialEditType="markdown"
useCommandShortcut={true}
ref={this.editorRef}
/>
- Html contents 입력하기
this.editorRef.current.getInstance ().setHtml(database_data, false);
- 입력한 데이터 가져오기
this.editorRef.current.getInstance ().getData();
"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."
참조
developer.aliyun.com/mirror/npm/package/@toast-ui/react-editor
nhn.github.io/tui.editor/latest/ToastUIEditor
'IT관련 > REACT' 카테고리의 다른 글
CKEditor 툴바 커스텀(React) (0) | 2021.01.18 |
---|---|
nhn / tui.grid 선택한 rows id 값 가져오기 (0) | 2021.01.11 |
React Html 데이터 출력하기(print) (0) | 2020.12.09 |
react에서 Html을 docx파일로 받기(Html -> docx 변환) (0) | 2020.12.09 |
React + CKEditor 4 사용하기 (0) | 2020.12.03 |