最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

plugin development - Gutenberg: import dependency or assign from global variable?

matteradmin6PV0评论

When developing for the Gutenberg / block editor, I see two methods used in various resources. Let's say I wanted to use i18n

The Gutenberg handbook sometimes does it like this:

  1. Define wp-i18n as a dependency in the wp_register_script block.

  2. Use const { __ } = wp.i18n; in the JavaScript.

But there is also documentation on how to do it like this:

  1. Add @wordpress/i18n as a dependency.

  2. Use import { __ } from '@wordpress/i18n'; in the JavaScript.

How do these ways differ and what is considered best practice in WordPress?

Post a comment

comment list (0)

  1. No comments so far