我在项目中安装了一个名为react-geosuggest的react组件。我需要在<label>
组件中找到<Geosuggest>
dom元素,并在onClick
中插入一个<label>
处理程序。有没有一种方法可以定位<label>
标记而不更改<Geosuggest>
组件的代码。
这是JSX
render() {
return (
<div>
<Geosuggest
id = "searchbar"
label = " "
placeholder = ""
initialValue = {this.state.location}
onChange = {this.onInputChange}
onSuggestSelect = {this.onSelection}
onClick = {this.toggleSearch}
className = {this.state.expand}
inputClassName = {this.state.expand}
// Name a calling reference
ref = 'geosuggest_component'
/>
</div>
);
}
这是HTML输出
<div class="geosuggest">
<div class="geosuggest__input-wrapper">
<label for="searchbar"></label>
<input class="geosuggest__input" type="text" id="searchbar">
</div>
</div>
最佳答案
您必须使用vanillajs。在您的组件中,您可以访问componentDidMount中的geosuggest_component ref:
componentDidMount() {
// findDOMNode returns an HTMLElement
const node = ReactDOM.findDOMNode(this.refs.geosuggest_component);
// Then search the label
const label = node.querySelector('label');
// Now, you can do anything you want with label
label.addEventListener('click', () => console.log('clicked'))
}
我使用ReactDOM.findDOMNode,因为在这种情况下,this.refs.geosuggest_component返回一个React组件。
方法findDOMNode将为您提供所需的HTMLElement。
但是,声明引用的更好方法是使用回调:
ref={node => this.geosuggest_component = node}
现在在componentDidMount中:
const node = ReactDOM.findDOMNode(this.geosuggest_component);