无法将可变数据加载到 Summernote

Cannot load variable data into Summernote

我希望 summernote 在加载时显示内容(如果内容存在)。但是我无法在代码视图中初始化期间将变量的值加载到 Summernote 中。

代码如下:

$(document).ready(function() {                
    $('.summernote').on('summernote.init', function () {
      $('.summernote').summernote('codeview.activate');
    }).summernote({
      height: 300,
      placeholder: 'Paste content here...',
      codemirror: { 
        theme: 'monokai'
      }
    }).summernote('code', '<?php echo isset($profiledata["Profile"])?$profiledata["Profile"]:"" ?>');

});

<form>
<div class="form-group">
   <label for="summernote"><strong>Paste the HTML code here:</strong></label>        
   <textarea class="summernote" name="profile" id="profile"> </textarea>        
</div>
<button type="submit" class="btn btn-success" id="submitButton">Submit</button>
</form>

我发布了对我有用的解决方案。但是,我欢迎任何建议。谢谢,

你可以通过在textarea标签之间设置来获取Summernote中已有的内容。

<form>
<div class="form-group">
<label for="summernote"><strong>Paste the HTML code here:</strong></label>        
<textarea class="summernote" name="profile" id="profile"><?php echo 
((isset($yourcontent)) ? '' . $yourcontent . '' : ''); ?></textarea>        
</div>
<button type="submit" class="btn btn-success" 
id="submitButton">Submit</button>
</form>

内容未在代码查看模式下显示。所以,我使用了一个 hack - 停用 codeview 并显示内容并重新激活 codeview。这是对我有用的解决方案。但是,我欢迎任何建议。谢谢,

$(document).ready(function() {                

    $('.summernote').on('summernote.init', function () {
      $('.summernote').summernote('codeview.activate');
    });

    $('#profile').summernote({
      height: 300,
      placeholder: 'Paste content here...',
      codemirror: { 
        theme: 'monokai'
      }
    });

    codeviewOn = $('#profile').summernote('codeview.isActivated');        
    if (codeviewOn) {
  $('.summernote').summernote('codeview.deactivate');
  $('#profile').summernote('code', '<?php echo json_encode($profiledata["Profile"]);?>');
  $('.summernote').summernote('codeview.activate');
}                

});