0
我試圖指派反應數據const date
這裏,這樣持續了價值得到通過this.props.date
流星 - createContainer反應變量
傳播到我的組件我使用amplify存儲用戶選定的日期到瀏覽器的本地存儲。
export default createContainer(() => {
// Amplify Store
const date = amplify.store("date") || '';
return { date};
}, sidePanel);
我可以看到瀏覽器的本地存儲的是變化值的變化,然而,this.props.date
沒有更新。
任何想法,如果這是一個可接受的方法?
我知道,終極版或者類似的圖書館應該被使用,但它會爲這個小項目我工作過殺。
感謝
你會在[componentWillReceiveProps](https://facebook.github.io/react/docs/react-component.html#componentwillreceiveprops)中收到任何新的道具嗎? – Jankapunkt