我正在尝试通过创建笔记webapp来测试React功能。在左侧边栏中,我列出了当前登录用户的所有注释。当选择其中一个音符时,我希望它出现在网页的主区域中。
除非我手动刷新页面,否则这是第一次选择注释时的效果,但不会在此之后。我认为组件第一次安装并检索注释,但是当我选择另一个注释时它没有更新组件。
我正在使用react-router,所以当我选择一个音符时,它会根据所选的音符遍历到/ notes /:note_id。这总是会改变,但内容不会刷新。
这是我的NoteItem代码:
var React = require('react');
var WebAPIUtils = require('../../utils/WebAPIUtils.js');
var NoteStore = require('../../stores/NoteStore.react.jsx');
var NoteActionCreators = require('../../actions/NoteActionCreators.react.jsx');
var Router = require('react-router');
var State = require('react-router').State;
var NoteItem = React.createClass({
mixins: [ State ],
getInitialState: function() {
return {
note: NoteStore.getNote(),
errors: []
};
},
componentDidMount: function() {
NoteStore.addChangeListener(this._onChange);
NoteActionCreators.loadNote(this.getParams().noteId);
},
componentWillUnmount: function() {
NoteStore.removeChangeListener(this._onChange);
},
_onChange: function() {
this.setState({
note: NoteStore.getNote(),
errors: NoteStore.getErrors()
});
},
render: function() {
return (
<div className="row">
<div className="note-title">{this.state.note.title}</div>
<div className="note-body">{this.state.note.body}</div>
</div>
);
}
});
module.exports = NoteItem;
以下是我使用react-router从我的侧边栏链接到NoteItem的方法:
<Link to="note" params={ {noteId: this.props.note.id} }>{this.props.note.title}</Link>
我的路线:
<Route name="app" path="/" handler={NotesApp}>
<DefaultRoute />
<Route name="login" path="/login" handler={LoginPage}/>
<Route name="signup" path="/signup" handler={SignupPage}/>
<Route name="notes" path="/notes" handler={NotesSidebar}/>
<Route name="note" path="/notes/:noteId" handler={NoteItem} />
<Route>
任何帮助都将不胜感激。
谢谢!