在教程“ Creating dynamic blocks”中,解释了要在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的内置“最新文章”块都可以正常工作,并且列表已正确加载。
检查code of the built-in block时,似乎使用了完全相同的选择器(还带有来自块本身配置的更多参数):
...
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 );
关于可能发生的事情的任何想法吗?
如何调试问题?