GetX 控制器是什么?
我是 getX 新手,我不明白 GetX 控制器的用途是什么。根据我的理解,它基本上保存变量,这是状态内部一切发生变化的地方。有人可以进一步解释吗
I am new with getX and I don't understand what is the purpose of GetX Controller. Based on my understanding, It basically hold variables and this is where everything changes inside the state. Can someone explain further
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它不是保存状态变化的变量,而是提供可观察性。它允许将变量声明为可观察的,这是通过使用 .obs 来实现的,并且整个类元素都可以受到控制或操作。要使其正常工作,您应该使用 Get.put 或 LazyPut 方法对其进行初始化。
如需了解更多信息,请参阅此视频。
Rather than holding variables for state change, it provides observability. It allows declaring a variable as observable, which is by using .obs and the whole class elements can be under control or operatable. To make it work you should initialize it by using Get.put or the LazyPut method.
For more, refer this video.