Page tree

Versions Compared

Key

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

...

  • 아래의 예제는 ruby는 '2.5.1', rails는 '5.2.3' 버전을 기준으로 작성되었습니다.
  • 파일 업로드를 위해 gem에서 제공하는 'carrierwave'라는 업로더를 사용하였습니다.
    • 설치 방법 1
      • gem install carrierwave
    • 설치 방법 2
      • Gemfile에 gem 'carrierwave' 입력
      • bundle install
  • 아래 예제에서는 이미지, 동영상, 파일 업로드에는 '/upload' API를, 임포트에는 '/import' API를 사용하였습니다.

    Code Block
    languagejs
    themeEmacs
    titlesynapeditor.config.js
    { 
        'editor.import.api': '/import',
        'editor.upload.image.api': '/upload',
        'editor.upload.video.api': '/upload',
        'editor.upload.file.api': '/upload',
    }


파일 업로더 생성

Code Block
languagebash
> rails generate uploader File

...