, когда я пытаюсь установить текст, который содержит «\ n». Он отображает ошибку - Uncaught SyntaxError: Неожиданный токен ILLEGAL в консоли браузераПоказать текст в редакторе Quill
В консоли java script я получаю текст, как показано ниже.
<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
;
'вар technical_notes Show браузера ...' линия плз – Dimava
'\ n' символ может перерыв этой линии на несколько строк. Попробуйте использовать строку '\' \ '' вместо '' ''string – Dimava
@Dimava, здесь я получил ошибку -> var technical_notes =' <% = raw review.technical_notes%> '; – user100693