Page tree

Versions Compared

Key

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

Status
colourYellow
title

...

Release 2.9.5

...

or Above

Upload all images included in the body as base64 encoded. The uploaded image's src attribute is changed to the uploadPath value returned from the server.


Parameters:

Name

Type

Attribute

Description

callbackFunc

Function
모든 이미지 업로드 후 실행할 callback 함수를 지정합니다. Set the callback function to be executed after uploading all images. (optional)


Example:

Code Block
languagejs
themeEmacs
titlePromise 사용
editor.uploadBase64Images().then(function() {
    editor.getPublishingHtml();
});

...