Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Status
colourYellow
title릴리즈

...

2.

...

18.2405 이상
 
Status
colourYellow
title릴리즈 3.0.2405 이상

변환된 data값으로 바로 문서를 불러옵니다.

...

Code Block
languagejs
themeEmacs
const DOC_TYPE = editor.constructor.CONST.DOC_TYPE
const data = {};

data.docType = DOC_TYPE.WORD;
data.serializedData = [10, 213, 156, ...];
data.importPath = "works/36a43f36f442b5824c6b061eb734553d";
data.name = "에디터 소개자료.docx";
data.size = 71914;
editor.openDocumentByData(data);

// data.name에 확장자가 있는 경우 docType을 구하는 방법
editor.util.getDocType(data.name.split('.').pop()); // 'WORD'