0

我有一个简单的按钮,应该直接从模态示例启动模态:

edit: withState( {
        isOpen: false,
    } )( ( { isOpen, setState } ) => (
        <div>
            <Button isDefault onClick={ () => setState( { isOpen: true } ) }>Open Modal</Button>
            { isOpen ?
                <Modal
                    title="This is my modal"
                    onRequestClose={ () => setState( { isOpen: false } ) }>
                    <Button isDefault onClick={ () => setState( { isOpen: false } ) }>
                        My custom close button
                    </Button>
                </Modal>
                : null }
        </div>
    ) ),

但是,它会引发异常:

警告:React.createElement:类型无效——需要一个字符串(对于内置组件)或一个类/函数(对于复合组件),但得到:未定义。您可能忘记从定义组件的文件中导出组件,或者您可能混淆了默认导入和命名导入。

4

1 回答 1

0

我犯的错误是假设Modal存在于editor. 我有这个:

const {Button, Modal} = editor;

将导入更正为以下内容,修复了此问题:

const {Button, Modal} = wp.components;

在后端,当您注册组件时,您wp-components当然希望将其作为依赖项:

wp_register_script(
    'recipe-block',
    ZRDN_PLUGIN_DIRECTORY_URL . $relativeScriptPath, // File.
    array( 'wp-components','wp-blocks', 'wp-i18n', 'wp-compose', 'wp-editor', 'wp-data','wp-element', 'underscore' ), // Dependencies.
    filemtime( ZRDN_PLUGIN_DIRECTORY . $relativeScriptPath ) // filemtime — Gets file modification time.
);
于 2018-12-09T23:35:13.507 回答