反应选择中的 onKeydown 事件

pav*_*nde 7 onkeydown reactjs react-select

我正在使用react-select vserion 2 组件。我希望能够在有人按下退格键时触发 OnKeyDown 事件。

有谁知道如何做到这一点?

Lau*_*ura 8

react-select提供了一个onKeyDown可以用作以下示例的道具:

 const onKeyDown = e => {
    // catch the code of the key pressed
    if (e.keyCode === 8) {
      // do your stuff
    }
  };
Run Code Online (Sandbox Code Playgroud)

在此功能中,您可以捕获keyCode按下的按键。

这是一个活生生的例子