ServerSideRender 属性不传递给后端

Posted

技术标签:

【中文标题】ServerSideRender 属性不传递给后端【英文标题】:ServerSideRender attributes does not passed to backend 【发布时间】:2021-11-13 17:18:39 【问题描述】:

我正在使用 @wordpress/server-side-render 从后端获取 Gutenberg 块的内容。

if ( props && props.attributes ) 
    blockContent = <ServerSideRender
        block="test/employee-block"
        attributes= props.attributes 
    />

这里是块的 php

register_block_type( 'test/employee-block', array(
        'title' => 'Test Block',
        'description' => 'test',
        'category' => 'widgets',
        'icon' => 'admin-users',
        'api_version' => 2,
        'editor_script' => 'employees_dynamic_block_script',
        'render_callback' => function ($block_attributes, $content) 
            return '<h1>test</h1>';
        
    ) );

但是,渲染回调函数的 $block_attributes 始终为空。我不知道为什么,但根据API documentation,它应该在那里。

【问题讨论】:

这能回答你的问题吗? Wordpress Custom Gutenberg Block render_callback doesnt render 没有,但我找到了解决方案 【参考方案1】:

找到了解决方法,如果你没有在 register_block_type 函数中定义参数键和类型,它不会将它们传递给渲染回调。

register_block_type( 'test/employee-block', array(
        'api_version' => 2,
        'editor_script' => 'employees_dynamic_block_script',
        'attributes'      => array(
            'selectControl'             => array(
                'type' => 'string',
                'default' => '0',
            )
        ),
        'render_callback' => function ($block_attributes, $content) 
            return '<h1>test</h1>';
        
    ) );

【讨论】:

这让我有好几次...一定要在组件本身中也传递它们。

以上是关于ServerSideRender 属性不传递给后端的主要内容,如果未能解决你的问题,请参考以下文章

JS传递对象数组为参数给后端,后端获取

vue给后端传递json格式的

前端传递给后端复杂类型 webapi 等

WSO2:将呼叫者的IP地址传递给后端

vue 将elementui 表单内文本域的文本进行处理让文本保存换行空格形式,传递给后端

如何设置IIS以验证客户端证书并将其作为http标头传递给后端?