Firebase RemoteConfig fetch 是否一直在监听变化?
Does Firebase RemoteConfig fetch keep listening for changes?
调用 Firebase RemoteConfig fetch 时,闭包会在数据可用时异步调用。返回初始结果后,闭包是继续监听变化还是我们必须再次调用 fetch?
恐怕没有进一步更改的侦听器。
如果您想实时监听更改,您需要通过某种通知机制传播更改:Firebase 提供了一个 official guide on this.
调用 Firebase RemoteConfig fetch 时,闭包会在数据可用时异步调用。返回初始结果后,闭包是继续监听变化还是我们必须再次调用 fetch?
恐怕没有进一步更改的侦听器。
如果您想实时监听更改,您需要通过某种通知机制传播更改:Firebase 提供了一个 official guide on this.