gpt4 book ai didi

javascript - 在 react 中访问回调内部的 event.target

转载 作者:搜寻专家 更新时间:2023-11-01 04:53:34 24 4
gpt4 key购买 nike

我有以下类片段:

constructor(props) {
super(props);

this.timeout = null;
}

search = (e) => {
clearTimeout(this.timeout);
this.timeout = setTimeout(
function(){ console.log(e.target); },
500
);
}

<input
type="text"
placeholder="Search by title or author"
onKeyPress={this.search} />

我无法获得设置的超时时间来打印事件的值,是否有我应该做但我没有做的事情?

最佳答案

SyntheticEvent .

根据 DOC :

The SyntheticEvent is pooled. This means that the SyntheticEvent object will be reused and all properties will be nullified after the event callback has been invoked. This is for performance reasons.

例子:

function onClick(event) {
console.log(event.type); // => "click"
const eventType = event.type; // => "click"

setTimeout(function() {
console.log(event.type); // => null
console.log(eventType); // => "click"
}, 0);
}

How to access the values inside callback?

在变量中存储值:

如果您想访问超时回调函数中的值,则将值存储在变量中并使用该变量而不是直接使用事件对象。

function onClick(event) {

console.log(event.type); // => "click"

const { type } = event;

setTimeout(function() {
console.log(type); // => click
}, 0);
}

使用 event.persist():

如果你想以异步方式访问事件属性,你应该在事件上调用event.persist(),这将从池中删除合成事件并允许引用事件由用户代码保留。

function onClick(event) {

event.persist();

console.log(event.type); // => "click"

setTimeout(function() {
console.log(event.type); // => click
}, 0);
}

关于javascript - 在 react 中访问回调内部的 event.target,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45483492/

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