在教程“创建动态块”中,解释了要在 Gutenberg 块中加载最近的帖子列表,使用的代码是这样的:
var el = wp.element.createElement,
registerBlockType = wp.blocks.registerBlockType,
withSelect = wp.data.withSelect;
registerBlockType( 'my-plugin/latest-post', {
...
edit: withSelect( function( select ) {
return {
posts: select( 'core' ).getEntityRecords( 'postType', 'post' )
};
} )( function( props ) {
if ( ! props.posts ) {
return "Loading...";
}
if ( props.posts.length === 0 ) {
return "No posts";
}
var className = props.className;
var post = props.posts[ 0 ];
return el(
'a',
{ className: className, href: post.link },
post.title.rendered
);
} ),
...
} );
我试过这段代码,但该块总是显示“正在加载...”。
似乎props.posts
总是null
或undefined
并且查询永远不会返回任何内容。
显然,使用 WordPress 内置的“最近的文章”块效果很好,并且列表加载正确。
检查内置块的代码,似乎使用完全相同的选择器(还有一些来自块本身配置的更多参数):
...
export default withSelect( ( select, props ) => {
const { postsToShow, order, orderBy, categories } = props.attributes;
const { getEntityRecords } = select( 'core' );
const latestPostsQuery = pickBy( {
categories,
order,
orderby: orderBy,
per_page: postsToShow,
}, ( value ) => ! isUndefined( value ) );
return {
latestPosts: getEntityRecords( 'postType', 'post', latestPostsQuery ),
};
} )( LatestPostsEdit );
关于可能发生的事情有什么想法吗?
如何调试问题?