我不明白为什么输入没有使用 MobX 更新

IT技术 javascript reactjs mobx
2021-05-03 14:40:03

所以我尝试将 MobX 与 react 一起使用,但我不明白为什么输入的值没有更新。

这是我到目前为止编写的代码:

@observer(['recipeStore'])
class App extends Component {
  render() {
    return (
      <input type="text" value={this.props.recipeStore.og} onChange={(e) => {this.props.recipeStore.og = e.target.value}}/>
    );
  }
}

class RecipeStore {
  @observable og;
  @observable style;

  constructor() {
    this.og = 1;
    this.style = {og_low: 1, og_high: 1, fg_low: 1, fg_high: 1, abv_low: 1, abv_high: 1};
  }

  @computed get fg() {
    if (!this.og) return '';
    return (((this.og - 1) * 0.25) + 1).toFixed(3);
  }

  @computed get abv() {
    if (!this.og) return '';
    return ((this.og - this.fg) * 131).toFixed(1);
  }
}

const recipeStore = new RecipeStore();

ReactDOM.render(
  <Provider recipeStore={recipeStore}>
    <App />
  </Provider>,
  document.getElementById('root')
);
1个回答

我找到了解决方案。因为我看到我的商店正在更新但没有触发任何react组件生命周期,所以我不得不在其他地方查看。

原来问题是@observer装饰器没有正常工作。

我不得不更改我的babel.dev.js以确保插件'babel-plugin-transform-decorators-legacy'是列表中的第一个。

我在这里找到了提示:https : //github.com/mobxjs/mobx/issues/105#issuecomment-213356342