Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道在 kotlin 和 android 中是否有类似于 switchmap 的东西(可能是 LiveData)。
我需要在可能经常发生并分别确定从服务器请求什么的事件之后立即更改我的请求,我只需要最后一个请求
在 Kotlin 中,您可以按如下方式使用转换库
val someLiveData: LiveData<Type> = ... val someOtherValue = Transformations.switchMap(someLiveData) { changedValue: Type -> //Assign someOtherValue using changedValue, the value coming from someLiveData. }