"Cannot read property 'getEditedPostAttribute' of undefined" 用于古腾堡中的 InnerBlocks

"Cannot read property 'getEditedPostAttribute' of undefined" for InnerBlocks in Gutenberg

我正在尝试为 WordPress 中的古腾堡编辑器实现块组件。在那里我想使用 InnerBlocks component ,它也用于例如 Wordpress 本身提供的列组件。

当我尝试开始使用该组件时,我总是在前端遇到相同的错误:

在控制台中我收到消息:

TypeError: Cannot read property 'getEditedPostAttribute' of undefined
    at script.build.js?ver=1:27811
    at getNextMergeProps (script.build.js?ver=1:103469)
    at new ComponentWithSelect (script.build.js?ver=1:103487)
    at zf (react-dom.min.js?ver=16.6.3:69)
    at Mf (react-dom.min.js?ver=16.6.3:87)
    at ph (react-dom.min.js?ver=16.6.3:98)
    at eg (react-dom.min.js?ver=16.6.3:125)
    at fg (react-dom.min.js?ver=16.6.3:126)
    at wc (react-dom.min.js?ver=16.6.3:138)
    at fa (react-dom.min.js?ver=16.6.3:137)

我已经根据这个文档实现了类似的 here:

const {registerBlockType} = wp.blocks;
const {InspectorControls, RichText, MediaUpload} = wp.editor;

import {TextControl} from '@wordpress/components';
import {InnerBlocks} from '@wordpress/block-editor';

let blockStyle = {
    marginTop: "25px",
    marginBottom: "25px;"
};

registerBlockType('myself/test-component', {
    title: 'Test component',
    icon: 'editor-insertmore',
    category: 'common',
    attributes: {
        title: {
            type: 'string'
        }
    },

    edit(props) {
        const {setAttributes, attributes} = props;

        function setTitle(changes) {
            setAttributes({
                title: changes
            })
        }

        return (
            <div style={blockStyle}>
                <TextControl
                    placeholder="Titel"
                    value={attributes.title}
                    onChange={setTitle}
                />
                <InnerBlocks
                    templateLock={false}
                    renderAppender={(
                        () => <InnerBlocks.ButtonBlockAppender/>
                    )}
                />
            </div>
        )
    },

    save(props) {
        const {attributes, className} = props;

        return (
            <div style={blockStyle}>
                <InnerBlocks.Content/>
            </div>
        );
    }
});

我现在的问题是,有没有其他人遇到这个问题,或者我怎样才能让这个组件工作?

所以我自己发现了错误。 我再次检查了来源 script.build.js 并找到了以下几行

var _select2 = select('core/editor'),
      getEditedPostAttribute = _select2.getEditedPostAttribute;

我只用过@wordpress/block-editor包。所以我现在将以下包添加到 script.js 文件并再次 运行 它。

npm install @wordpress/editor

在script.js

import {InnerBlocks} from "@wordpress/editor";

错误现在消失了,但不幸的是我得到了一个新错误。

我刚刚遇到这个错误,我不确定我使用的 WordPress 实例是否使用 Gutenberg,但我可以按照建议通过禁用 Yoast SEO 插件来消除错误 here.