module.exports = React.createClass({
click: function(e){
console.log(e)
},
render: function() {
return div({className: "thing1", children:[
div({className: "thing2", onClick: this.click})
]})
}
})
傳遞給的事件包含所有制作的點擊對象,但值爲空。React.js onClick事件返回所有空值
Object { dispatchConfig: null, dispatchMarker: null, nativeEvent: null, type: null, target: null, currentTarget: null, eventPhase: null, bubbles: null, cancelable: null, timeStamp: null, 22 more… }
任何想法?
謝謝,理解,很好的答案。 – boom 2014-10-11 19:54:41
爲了簡單的調試目的,在記錄事件之前調用事件上的persist()可能是一個很好的解決方法。 – 2014-10-12 02:41:49