gpt4 book ai didi

javascript - 将代理与 mobx 存储结合使用

转载 作者:行者123 更新时间:2023-11-28 04:51:38 25 4
gpt4 key购买 nike

我有一个带有react和mobx的应用程序,我想将所有日志用户交互(操作调用)与Mobx存储分开,所以我做了一些搜索,我发现代理模式是这个员工的最佳方式,我的问题是在我的案例中,我如何使用 Mobx 和代理。谢谢

最佳答案

您可以使用spy为此目的。

示例 ( JS Bin )

class Store {
@observable count = 1;
@action
increment(step) {
this.count = this.count + step;
}
}

const store = new Store();

setInterval(() => store.increment(store.count), 1000);

spy((event) => {
if (event.type === 'action') {
console.log(`${event.name} with args: ${event.arguments}`);
}
});

关于javascript - 将代理与 mobx 存储结合使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42874242/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com