可观察数组的访问元素

时间:2019-10-23 18:35:05

标签: reactjs mobx

enter image description here

我有一个名为拦截器的道具,它返回可观察对象的数组。这些对象包含“ userId”。

如何返回包含这些userId的数组?

1 个答案:

答案 0 :(得分:1)

Computed observables可以在这种情况下提供帮助。确保您的组件被装饰为mobx-react @observer,这样它将自动使道具可观察。

@computed get userIds () {
  return this.props.blockers.map(blocker => blocker.userId)
}