古腾堡:动态块-在编辑器中显示保存的数据

时间:2019-02-07 06:17:51

标签: wordpress wordpress-rest-api wordpress-gutenberg gutenberg-blocks create-guten-block

我正在尝试创建带有下拉列表的Gutenberg动态块。我已经完成了块的创建,并在前端使用选定的下拉值渲染了该块。

在编辑帖子时如何设置使用上一个值选择的下拉菜单?

我尝试使用props.attributes访问属性值,但得到undefined

block.js

const { __ } = wp.i18n;
const { registerBlockType, RichText } = wp.blocks;

registerBlockType( 'gut/new-block', {
    title: __( 'new-block - Test' ),
    category: 'common',
    attributes: {
        category_id: {
            type: 'number'
        }
    },
    edit: function( props ) {
        const { attributes: { category_id }, setAttributes } = props;

        function setCategory( event ) {
            const selected = event.target.querySelector( 'option:checked' );
            setAttributes( { category_id: selected.value } );
            event.preventDefault();
        }

        return (
            <div className={ props.className }>                            
                <select value={ category_id } onChange={ setCategory }>
                    <option value="120">Animals</option>
                    <option value="350">Architecture</option>
                    <option value="700">Nature</option>
                    <option value="800">People</option>
                    <option value="432">Tech</option>
                </select>                
            </div>
        );
    },
    save ( props ) {
        return null
    },
});

php

function gut_my_new_block() {
    wp_register_script(
        'gut-my-new-block',
        plugins_url( 'new-block/dist/blocks.build.js', __FILE__ ),
        array( 'wp-blocks', 'wp-element' )
    );

    register_block_type( 'gut/new-block', array(
        'render_callback' => 'gut_render_block_my_newblock',
        'editor_script' => 'gut-my-new-block',
    ) );
}

add_action( 'init', 'gut_my_new_block' );

function gut_render_block_my_newblock($params) {  
    return '<h3>selected category '.$params['category_id'].'</h3>';
}

1 个答案:

答案 0 :(得分:1)

选择值另存为字符串,因此,如果将类型更改为“字符串”,它将起作用。或者,您也可以在保存之前先解析()或Number()值,然后在拉取值时将其返回toString()。