gpt4 book ai didi

javascript - React.js onClick 事件返回所有空值

转载 作者:行者123 更新时间:2023-12-03 13:03:00 25 4
gpt4 key购买 nike

module.exports = React.createClass({
click: function(e){
console.log(e)
},
render: function() {
return div({className: "thing1", children:[
div({className: "thing2", onClick: this.click})
]})
}
})

传递给的事件包含点击对象的所有制作,但值为空。

Object { dispatchConfig: null, dispatchMarker: null, nativeEvent: null, type: null, target: null, currentTarget: null, eventPhase: null, bubbles: null, cancelable: null, timeStamp: null, 22 more… }

有什么想法吗?

最佳答案

出于性能原因,React 池事件对象。因此,它从池中获取一个事件对象,为其设置属性,调用处理程序,然后将所有属性设置为 null,以便可以重用。

这主要只是一个问题,因为控制台会延迟评估您记录的对象。您可以对事件对象进行浅克隆,以使 console.log 正常工作。

出于调试目的,

console.shallowCloneLog = function(){
var typeString = Function.prototype.call.bind(Object.prototype.toString)
console.log.apply(console, Array.prototype.map.call(arguments, function(x){
switch (typeString(x).slice(8, -1)) {
case 'Number': case 'String': case 'Undefined': case 'Null': case 'Boolean': return x;
case 'Array': return x.slice();
default:
var out = Object.create(Object.getPrototypeOf(x));
out.constructor = x.constructor;
for (var key in x) {
out[key] = x[key];
}
Object.defineProperty(out, 'constructor', {value: x.constructor});
return out;
}
}));
}
console.shallowCloneLog(e)

关于javascript - React.js onClick 事件返回所有空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26317985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com