#javascript #json #twitter-bootstrap #quill
#javascript #json #twitter-bootstrap #quill
Вопрос:
Я использую редактор quill и внутри модальной начальной загрузки, и он отлично работает при вставке данных в атрибут data- * в форме JSON
Так в чем проблема :
Проблема в том, что когда я попытался установить данные в редакторе quill с помощью setContent api, это не сработало
/*
====================
Quill Editor
====================
*/
var quill = new Quill('#editor-container', {
modules: {
toolbar: [
[{ header: [1, 2, false] }],
['bold', 'italic', 'underline'],
['image', 'code-block']
]
},
placeholder: 'Compose an epic...',
theme: 'snow' // or 'bubble'
});
Вот мой jsfiddle (перед использованием прочитайте инструкцию ниже)
Как использовать мою скрипку:
- Нажмите на кнопку добавить элемент.
- Введите что-нибудь в редакторе quill
- Нажмите кнопку сохранить изменения.
- Теперь вы увидите, что элемент динамически добавляется с помощью js
- Проверьте динамический элемент. Вы увидите атрибут data-text с данными quill json.
- Теперь нажмите на динамический элемент, он открывает модальный, теперь возникает проблема, он не устанавливает значение содержимого, которое он извлекает из формы data-* attribute.
Ответ №1:
Хитрость заключалась в преобразовании строки JSON обратно в объект JSON:
Из этого: var dataText = $(this).attr('data-text');
К этому: var dataText = JSON.parse($(this).attr('data-text'));
var quill = new Quill('#editor-container', {
modules: {
toolbar: [
[{
header: [1, 2, false]
}],
['bold', 'italic', 'underline'],
['image', 'code-block']
]
},
placeholder: 'Compose an epic...',
theme: 'snow'
});
function modalclick() {
$(".dynamic-element").on('click', function(event) {
var dataText = JSON.parse($(this).attr('data-text'));
$('#exampleModalLong').modal('show');
quill.setContents(dataText);
console.log(dataText);
})
}
$("#addElement").on('click', function(event) {
var delta = quill.getContents();
var $_textDelta = JSON.stringify(delta);
console.log($_textDelta);
$html = "<div class='dynamic-element' data-text='" $_textDelta "'>"
"<div>dynamic-element</div>"
"</div>";
$(".element").prepend($html);
modalclick();
$('#exampleModalLong').modal('hide');
})
//modalclick();
$("#openmodal").on('click', function(event) {
$('#exampleModalLong').modal('show');
})
$('#exampleModalLong').on('hidden.bs.modal', function(e) {
quill.deleteText(0, 2000);
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="https://cdn.quilljs.com/1.3.6/quill.min.js"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet"/>
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet"/>
<!-- Button trigger modal -->
<input type="button" id="openmodal" class="btn btn-info btn-rounded mb-4" value="Add element">
<div class="element">
</div>
<!-- Modal -->
<div class="modal fade" id="exampleModalLong" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">amp;times;</span>
</button>
</div>
<div class="modal-body">
<div id="editor-container">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" id="addElement" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
Комментарии:
1. Большое спасибо. Ты спасаешь меня
2. Рад вам помочь