form에서 method을 지정할때 post로 하고
node.js에서 받아서 처리하게 하는 것도 방법일 듯
CKEDITOR.replace('contents'); CKEDITOR.instances.contents.updateElement(); |
[링크 : https://offbyone.tistory.com/207]
[링크 : https://academy.realm.io/kr/posts/realm-node-js-express-blog-tutorial/]
+
2019.03.14
아무생각없이 복붙했는데 안되서 찾아보니 replace에 들어가는 id를 넣어주어야 한다 -_ㅠ
두가지 모두 ckeditor v4에서 작동하는 것을 확인하였으니 골라서 입맛대로 쓰면 될 듯
(위에꺼는 updatElement 해주고 form으로 넘겨주거나 해당 내용을 받아오면 되는 지라 원칙에 가까운 느낌?)
var editor = CKEDITOR.replace( 'editor1' ); var data = CKEDITOR.instances.editor1.getData(); |
[링크 : https://ckeditor.com/docs/ckeditor4/latest/guide/dev_savedata.html]
'Programming > node.js' 카테고리의 다른 글
node.js http cache proxy (0) | 2019.03.20 |
---|---|
node.js 사용자 모듈 만들기 (0) | 2019.03.13 |
floala 에디터 + node.js (0) | 2019.03.08 |
wysiwyg editor / node.js (0) | 2019.02.26 |
node.js 파비콘 설정하기 (0) | 2019.02.22 |