WordPress Gutenberg:此块包含意外或无效的内容
WordPress Gutenberg: This block contains unexpected or invalid content
我正在创建非常简单的文本块。当我第一次添加它时,该块工作正常。如果我刷新页面并尝试编辑块,它会显示消息 "This block contains unexpected or invalid content."。我试图禁用 htmlvalidation 检查,但这没有帮助。还有,我点击解析后:当前块和转换后块包含相同的代码。
http://prntscr.com/lwv18b
http://prntscr.com/lwv1e1
这是我的index.js文件代码
<pre>
/**
* Block dependencies
*/
import icon from './icon';
import './style.css';
/**
* Internal block libraries
*/
const { __ } = wp.i18n;
const { registerBlockType } = wp.blocks;
const { RichText } = wp.editor;
/**
* Register block
*/
export default registerBlockType(
'jsforwpblocks/richtext',
{
title: __('Bizbike Small Description', 'jsforwpblocks'),
description: __('Default title', 'jsforwpblocks'),
category: 'common',
icon: 'text',
keywords: [
__('Text', 'jsforwpblocks'),
__('Call to Action', 'jsforwpblocks'),
__('Message', 'jsforwpblocks'),
],
attributes: {
message: {
type: 'array',
source: 'children',
selector: '.message-body',
}
},
supports: {
// html: false,
className: false,
customClassName: false,
html: false,
htmlValidation: false,
},
edit: props => {
const { attributes: { message }, className, setAttributes } = props;
const onChangeMessage = message => { setAttributes({ message }) };
return (
<div id="small-text" className={className}>
<RichText
tagName="div"
multiline="p"
placeholder={__('Place the title', 'jsforwpblocks')}
onChange={onChangeMessage}
value={message}
/>
</div>
);
},
save: props => {
const { attributes: { message } } = props;
return (
<div>
<div class="commute text-center">
{message}
</div>
</div>
);
},
},
);
</pre>
您遇到错误是因为您的编辑功能 HTML 节点与保存功能 HTML 节点不匹配。
在 edit 功能上你有 -
<div id="small-text" className={className}>
<div>
<p></p>
</div>
</div>
在 save 函数上你有一个额外的 div-
<div>
<div class="commute text-center">
<div>
<p></p>
</div>
</div>
</div>
要诊断这些错误,请打开浏览器控制台 (cmd+opt+i 在 Mac 上的 Chrome 中,然后 select 控制台选项卡)并查找 a "Block validation" error,它应该看起来像这样:
blocks.js?ver=6.2.5:8545 Block validation: Block validation failed for avorg/block-rss
({name: "avorg/block-rss", title: "RSS Link", icon: {…}, category: "widgets", attributes: {…}, …}).
Content generated by save
function:
<div class="wp-block-avorg-block-rss"><a href="http://google.com" target="_blank"><svg aria-hidden="true" role="img" focusable="false" class="dashicon dashicons-rss" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path d="M14.92 18H18C18 9.32 10.82 2.25 2 2.25v3.02c7.12 0 12.92 5.71 12.92 12.73zm-5.44 0h3.08C12.56 12.27 7.82 7.6 2 7.6v3.02c2 0 3.87.77 5.29 2.16C8.7 14.17 9.48 16.03 9.48 18zm-5.35-.02c1.17 0 2.13-.93 2.13-2.09 0-1.15-.96-2.09-2.13-2.09-1.18 0-2.13.94-2.13 2.09 0 1.16.95 2.09 2.13 2.09z"></path></svg></a></div>
Content retrieved from post body:
<div class="wp-block-avorg-block-rss"><a href="http://google.com" target="_blank" rel="noopener noreferrer"><svg aria-hidden="true" role="img" focusable="false" class="dashicon dashicons-rss" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path d="M14.92 18H18C18 9.32 10.82 2.25 2 2.25v3.02c7.12 0 12.92 5.71 12.92 12.73zm-5.44 0h3.08C12.56 12.27 7.82 7.6 2 7.6v3.02c2 0 3.87.77 5.29 2.16C8.7 14.17 9.48 16.03 9.48 18zm-5.35-.02c1.17 0 2.13-.93 2.13-2.09 0-1.15-.96-2.09-2.13-2.09-1.18 0-2.13.94-2.13 2.09 0 1.16.95 2.09 2.13 2.09z"></path></svg></a></div>
错误的发生是因为检索到的HTML和save
函数生成的HTML不匹配。这可能是由于 WordPress 注入 属性(上面屏幕截图中的 rel
)或者当块的定义自使用块后发生更改时引起的。
要解决此问题,您可能需要执行以下操作之一:
- 单击编辑器界面中的解决更新块实例以匹配块的修改定义。
- 如果您构建了块,您可能需要编辑
save
函数,使 HTML 和 returns 与最终的 HTML 相同持久化到数据库。
在我的例子中,我必须确保我的 save
函数在生成的 <a>
标签中包含 rel="noopener noreferrer"
,这样 WordPress 就不会注入这个 属性 t 导致块实例的 HTML 与我的 save
函数生成的 HTML 不匹配。
我正在创建非常简单的文本块。当我第一次添加它时,该块工作正常。如果我刷新页面并尝试编辑块,它会显示消息 "This block contains unexpected or invalid content."。我试图禁用 htmlvalidation 检查,但这没有帮助。还有,我点击解析后:当前块和转换后块包含相同的代码。
http://prntscr.com/lwv18b
http://prntscr.com/lwv1e1
这是我的index.js文件代码
<pre>
/**
* Block dependencies
*/
import icon from './icon';
import './style.css';
/**
* Internal block libraries
*/
const { __ } = wp.i18n;
const { registerBlockType } = wp.blocks;
const { RichText } = wp.editor;
/**
* Register block
*/
export default registerBlockType(
'jsforwpblocks/richtext',
{
title: __('Bizbike Small Description', 'jsforwpblocks'),
description: __('Default title', 'jsforwpblocks'),
category: 'common',
icon: 'text',
keywords: [
__('Text', 'jsforwpblocks'),
__('Call to Action', 'jsforwpblocks'),
__('Message', 'jsforwpblocks'),
],
attributes: {
message: {
type: 'array',
source: 'children',
selector: '.message-body',
}
},
supports: {
// html: false,
className: false,
customClassName: false,
html: false,
htmlValidation: false,
},
edit: props => {
const { attributes: { message }, className, setAttributes } = props;
const onChangeMessage = message => { setAttributes({ message }) };
return (
<div id="small-text" className={className}>
<RichText
tagName="div"
multiline="p"
placeholder={__('Place the title', 'jsforwpblocks')}
onChange={onChangeMessage}
value={message}
/>
</div>
);
},
save: props => {
const { attributes: { message } } = props;
return (
<div>
<div class="commute text-center">
{message}
</div>
</div>
);
},
},
);
</pre>
您遇到错误是因为您的编辑功能 HTML 节点与保存功能 HTML 节点不匹配。
在 edit 功能上你有 -
<div id="small-text" className={className}>
<div>
<p></p>
</div>
</div>
在 save 函数上你有一个额外的 div-
<div>
<div class="commute text-center">
<div>
<p></p>
</div>
</div>
</div>
要诊断这些错误,请打开浏览器控制台 (cmd+opt+i 在 Mac 上的 Chrome 中,然后 select 控制台选项卡)并查找 a "Block validation" error,它应该看起来像这样:
blocks.js?ver=6.2.5:8545 Block validation: Block validation failed for
avorg/block-rss
({name: "avorg/block-rss", title: "RSS Link", icon: {…}, category: "widgets", attributes: {…}, …}).
Content generated by
save
function:
<div class="wp-block-avorg-block-rss"><a href="http://google.com" target="_blank"><svg aria-hidden="true" role="img" focusable="false" class="dashicon dashicons-rss" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path d="M14.92 18H18C18 9.32 10.82 2.25 2 2.25v3.02c7.12 0 12.92 5.71 12.92 12.73zm-5.44 0h3.08C12.56 12.27 7.82 7.6 2 7.6v3.02c2 0 3.87.77 5.29 2.16C8.7 14.17 9.48 16.03 9.48 18zm-5.35-.02c1.17 0 2.13-.93 2.13-2.09 0-1.15-.96-2.09-2.13-2.09-1.18 0-2.13.94-2.13 2.09 0 1.16.95 2.09 2.13 2.09z"></path></svg></a></div>
Content retrieved from post body:
<div class="wp-block-avorg-block-rss"><a href="http://google.com" target="_blank" rel="noopener noreferrer"><svg aria-hidden="true" role="img" focusable="false" class="dashicon dashicons-rss" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path d="M14.92 18H18C18 9.32 10.82 2.25 2 2.25v3.02c7.12 0 12.92 5.71 12.92 12.73zm-5.44 0h3.08C12.56 12.27 7.82 7.6 2 7.6v3.02c2 0 3.87.77 5.29 2.16C8.7 14.17 9.48 16.03 9.48 18zm-5.35-.02c1.17 0 2.13-.93 2.13-2.09 0-1.15-.96-2.09-2.13-2.09-1.18 0-2.13.94-2.13 2.09 0 1.16.95 2.09 2.13 2.09z"></path></svg></a></div>
错误的发生是因为检索到的HTML和save
函数生成的HTML不匹配。这可能是由于 WordPress 注入 属性(上面屏幕截图中的 rel
)或者当块的定义自使用块后发生更改时引起的。
要解决此问题,您可能需要执行以下操作之一:
- 单击编辑器界面中的解决更新块实例以匹配块的修改定义。
- 如果您构建了块,您可能需要编辑
save
函数,使 HTML 和 returns 与最终的 HTML 相同持久化到数据库。
在我的例子中,我必须确保我的 save
函数在生成的 <a>
标签中包含 rel="noopener noreferrer"
,这样 WordPress 就不会注入这个 属性 t 导致块实例的 HTML 与我的 save
函数生成的 HTML 不匹配。