그냥 Mobx로 시작하십시오 & 저장소가 업데이트되는 데 문제가 있습니다. '나'속성을 업데이트해야합니다 버튼을 클릭 할 때 나는 오류 :React + Mobx : 상점을 업데이트하려고하면 'this'가 null입니다.
Store.js:12 Uncaught TypeError: Cannot set property 'me' of null
내 가기 :
구성 요소import { observable } from 'mobx';
class Store {
@observable me;
constructor() {
this.me = 'test';
}
change_me(){
this.me = 'test 1';
console.log(this); // null???
}
}
const store = new Store();
export default store;
:
import React from "react";
import { observer } from 'mobx-react';
export default class Layout extends React.Component{
render(){
var store = this.props.store;
return(
<div>
<button onClick={store.change_me}>{store.me}</button>
</div>
)
}
}
내가 아마 놓친 일부 어떻게 작동하는지의 근본적인 부분이지만 그것을 이해할 수는 없습니다.
입력 해 주셔서 감사합니다 - 구성 요소 내 기능으로 그것을 분리 내 고정. 하지만 이제는 또 다른 문제가 있습니다. 저장소가 업데이트되면 구성 요소가 다시 렌더링되지 않습니다. 나는 당신이 http://stackoverflow.com/questions/40702409/react-mobx-component-not-updating-after-store-change를 보살 피는 경우 여기에 또 다른 질문을 만들었다. 나는 미쳐가는 것처럼 느껴진다. – Chris