gpt4 book ai didi

html - CKEditor Source Dialog 显示未存储在数据库中的 HTML 实体

转载 作者:行者123 更新时间:2023-11-28 02:38:16 24 4
gpt4 key购买 nike

当我单击菜单栏上的“源代码”按钮时,我看到了页面的 HTML 源代码,但它显示的代码如下:

<p>This&#32;is&#32;how&#32;the&#32;code&#32;is&#32;showing&#32;now</p>

当我想这样显示时:

<p>This is how the code should be showing</p>

我以为它是以这种方式将其存储在数据库中,但事实并非如此。我需要在 config.js 文件中更改什么才能正确查看源代码?

编辑

这是我完整的 config.js 文件:

CKEDITOR.editorConfig = function( config ) {

config.language = 'en';
config.uiColor = '#ededed';
config.height = 500;
config.toolbarCanCollapse = false;
config.extraPlugins = 'font,justify,liststyle,filebrowser,colorbutton,panelbutton';
config.allowedContent = true;

config.toolbarGroups = [
{ name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
{ name: 'forms', groups: [ 'forms' ] },
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
{ name: 'liststyle' },
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker', 'editing' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi', 'paragraph' ] },
{ name: 'styles', groups: [ 'styles' ] },
{ name: 'links', groups: [ 'links' ] },
{ name: 'insert', groups: [ 'insert' ] },
{ name: 'colors', groups: [ 'colors' ] },
{ name: 'tools', groups: [ 'tools' ] },
{ name: 'others', groups: [ 'others' ] },
{ name: 'about', groups: [ 'about' ] },
{ name: 'tabletools' }
];

config.removeButtons = 'About';
config.format_tags = 'p;h1;h2;h3;pre';

};

最佳答案

您看到的是 HTML Entity空间。您很可能在编辑器中使用了以下配置:

        var editor = CKEDITOR.replace( 'editor1', {
entities_additional : '#32'
});

config.js 中,它看起来像:config.entities_additional = '#32';

关于html - CKEditor Source Dialog 显示未存储在数据库中的 HTML 实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45822112/

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