-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Daisuke Konishi edited this page Nov 10, 2016
·
1 revision
Welcome to the react-like-button wiki!
thisのundefinedを避けるために、JSX側でのメソッドの呼び出し時にthisの頭に::つけてbindするのは新しい発見 ちなみにES7からの構文らしく、使えなかったので、後ろに .bind(this) をつけることで対処。(line92~94)
CSSをstyles()の中でオブジェクトの形で管理して、JSX側で this.styles.hoge で当てるのは分かりやすかった ただ、インラインであてることになるから、詳細度高いのがちょっと気になる
React.createClass({ ... })じゃなくて、以下を使う class CommentBox extends React.Component { ... }