MobX从React组件获取当前值

时间:2019-05-23 23:02:35

标签: mobx mobx-react

当我们要观察一个属性时,我们使用类似这样的东西:

class OurComponent extends React.Component<Props, State> { ... }

export default inject((allStores: { store: StoreType }, nextProps, ctx) =>
    ({ PropName: allStores.store.property }))(observer(OurComponent));

我正在一个单独的帮助程序文件(香草JS)中编写实用程序功能,该文件需要从商店获取[属性]-基本上是从外部获取[PropName]。 我该如何做而没有反应?

0 个答案:

没有答案