Summernote 所见即所得编辑器保存在代码视图中不工作 js/jquery

Edv*_*erg 3 javascript jquery summernote

我使用Summernote作为所见即所得的编辑器,但我有一个问题。我的大部分文本编辑都在代码视图中进行,问题是如果您在代码视图中提交表单,则编辑的文本不会被保存。

出于某种原因,我需要在代码视图和所见即所得视图之间切换以保存编辑的文本。任何人都有关于如何解决这个问题的任何线索?

在代码视图中看到过Not save content ?#127但它对我不起作用。

这是我的代码。

$(document).ready(function() {
    $('#desc').summernote({
        height: 1000,                 // set editor height
        minHeight: null,             // set minimum height of editor
        maxHeight: null,             // set maximum height of editor
        focus: true,                  // set focus to editable area after initializing summernote
        codemirror: {
          mode: 'text/html',
          htmlMode: true,
          lineNumbers: true,
          theme: 'monokai'
        },
        callbacks: {
          onBlur: function() {
            //should probably do something here
          },
          onInit: function() {
            console.log('Summernote is launched');
            $(this).summernote('codeview.activate');
          }
        }
    });
});
Run Code Online (Sandbox Code Playgroud)

如果需要,这里是 html。

<textarea name="desc" id="desc" class="form-control" rows="40"></textarea>
Run Code Online (Sandbox Code Playgroud)

小智 8

尝试做这样的事情。

$(document).on("submit","#my-form-name",function(e){
    $("#desc").val($('#desc').code());
    return true;
});

$(document).on("submit","#my-form-name",function(e){
    if ($('#desc').summernote('codeview.isActivated')) {
        $('#desc').summernote('codeview.deactivate'); 
    }
});
Run Code Online (Sandbox Code Playgroud)