gpt4 book ai didi

php - summernote 在从 Mysql DB 检索后显示 html 代码

转载 作者:行者123 更新时间:2023-11-30 22:28:12 25 4
gpt4 key购买 nike

我使用 summernote wyswyg 编辑器,我在编辑器中写了一些内容,然后将其保存在 Mysql 数据库中,现在当我使用 php 从数据库中检索内容并在 summernote 上回显时,编辑器显示 html 代码而不是我们在所见即所得中看到的格式化内容,请给我一些解决方案。我的代码:

 <textarea id="summernote" class="form-control" placeholder="Article" name="article_content"><?php echo $article_content; ?></textarea>

    <script src="summernote-0.7.0-dist/dist/summernote.min.js"></script>

<script>
$(document).ready(function() {
$('#summernote').summernote({
height: "300px"
});
});
var postForm = function() {
var content = $('textarea[name="article_content"]').html($('#summernote').code());
}
</script>

最佳答案

idea很好,问题是你怎么拿数据。

您应该使用$('#summernote').summernote('code') 获取数据,然后在div/文本区域回显

关于php - summernote 在从 Mysql DB 检索后显示 html 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34641660/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com