在Quill编辑器中显示文本

时间:2016-10-12 08:42:08

标签: javascript ruby-on-rails ruby-on-rails-4 quill

当我尝试设置包含" \ n"的文本时。它在浏览器控制台中显示错误 - 未捕获的SyntaxError:Unexpected token ILLEGAL

在java脚本控制台中,我得到如下文字。

<script type="text/javascript">
  var toolbarOptions = [
    [{ 'font': [] }],
    [{ 'size': ['small', false, 'large', 'huge'] }],  // custom dropdown
    ['bold', 'italic', 'underline', 'strike'],        // toggled buttons
    //['blockquote', 'code-block'],

    [{ 'header': 1 }, { 'header': 2 }],               // custom button values
    [{ 'list': 'ordered'}, { 'list': 'bullet' }],
    //[{ 'script': 'sub'}, { 'script': 'super' }],      // superscript/subscript
    [{ 'indent': '-1'}, { 'indent': '+1' }],          // outdent/indent
    //[{ 'direction': 'rtl' }],                         // text direction
    [{ 'color': [] }, { 'background': [] }],          // dropdown with defaults from theme

    [{ 'align': [] }],

    ['clean']                                         // remove formatting button
  ];
  var quill = new Quill('#standalone-container', {
      modules: {
      toolbar: toolbarOptions
    },
    theme: 'snow'
  });
  var quill1 = new Quill('#standalone-container1', {
      modules: {
      toolbar: toolbarOptions
    },
    theme: 'snow'
  });

  $(".tacti_note_txt").click(function(){
    $("#order_video_01").get(0).pause();
  })

  $(".tech_note_txt").click(function(){
    $("#order_video_02").get(0).pause();
  })

  $(document).ready(function(){

    // my element which display errors
    var technical_notes = '<%= raw @review.technical_notes %>';
    quill.setText(technical_notes);

    var tactical_notes = '<%= @review.tactical_notes.to_s %>';
    quill1.setText(tactical_notes);

  });
</script>

我想在编辑器中显示如下文字:

  'Rails
   and
   quill
   editor
   ;

2 个答案:

答案 0 :(得分:0)

这只是一个猜测,但你可能需要使用转义字符\,所以试试"\\n"

修改

使用"<br/>"代码而不是"\n"

答案 1 :(得分:0)

ActiveSupport :: JSON.encode(my_string) - 为我工作。

因为它将我的字符串保留为\ n和\ t,所以quill编辑器以适当的格式显示它:

 'Rails
   and
   quill
   editor
   ;