zustand-log-and-expose 中文文档教程

发布于 2年前 浏览 15 项目主页 更新于 2年前

记录并公开 zustand 的中间件

这是 Zustand 状态管理器的中间件,用于记录控制台中的存储更改并在窗口对象中公开它们。

用法很简单:

const logAndExpose = createLogAndExposeMiddleware("ConsolePrefix");

然后使用 logAndExpose 变量作为中间件。

您将传递给创建者函数的参数将前置控制台消息。

任何商店更改后,都可以通过 window._zustand 访问公开的商店。

Log and expose middleware for zustand

This is the middleware for Zustand state manager that logs store changes in console and exposes them in window object.

Usage is simple:

const logAndExpose = createLogAndExposeMiddleware("ConsolePrefix");

Then use logAndExpose variable as middleware.

Arguments that you will pass into the creator function will prepend console message.

Exposed stores are available through window._zustand after any change of store.

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文