在 React/BlueprintJS 应用程序中,我有一个TagInput。单击时,我需要访问任何标签的字符串值。为简单起见,假设我只需要console.log(value)
.
我似乎无法在回调中找到标签的值。根据文档,我相信我需要在内部传递一个 onClick 函数tagProps
。但是,我尝试过的任何方法似乎都没有返回字符串值。
我在这里创建了一个基本示例,单击任何标签后在控制台中查看错误:
https://codesandbox.io/s/blueprint-sandbox-7jsb3?fontsize=14
Warning: This synthetic event is reused for performance reasons. If you're seeing this, you're accessing the property `nativeEvent` on a released/nullified synthetic event. This is set to null. If you must keep the original synthetic event around, use event.persist().
我将非常感谢朝着正确的方向轻推,非常感谢。