gutenbergdocs/docs/reference-guides/data/data-core-viewport.md
2025-10-22 01:40:18 +08:00

1.2 KiB
Raw Permalink Blame History

视口数据

命名空间:core/viewport

选择器

isViewportMatch

若视口匹配指定查询条件则返回 true否则返回 false。

使用示例

import { store as viewportStore } from '@wordpress/viewport';
import { useSelect } from '@wordpress/data';
import { __ } from '@wordpress/i18n';
const ExampleComponent = () => {
	const isMobile = useSelect(
		( select ) => select( viewportStore ).isViewportMatch( '< small' ),
		[]
	);

	return isMobile ? (
		<div>{ __( '移动端' ) }</div>
	) : (
		<div>{ __( '非移动端' ) }</div>
	);
};

参数说明

  • state Object: 视口状态对象
  • query string: 查询字符串。包含运算符和断点名称,以空格分隔。运算符默认为 >=

返回值

  • boolean: 视口是否匹配查询条件

操作

此包中的操作不应直接使用。

暂无需要说明的内容