如何在没有指定 id的情况下将 React Ref 与 jQuery lib 一起使用?
import $ from 'jquery';
import 'jquery.mask.js';
class PhoneComponent extends React.Component {
ref = React.createRef();
state = {value: ''};
componentDidMount() {
this.renderMask();
}
render() {
return (
<input ref={this.ref} type="text"/>
)
}
renderMask() {
const { value } = this.state;
const options = {
onKeyPress: (cep, e) => this.ref.current.value = cep
};
$(***???***).val(value);
$(***???***).mask('+38(###)###-##-##', options);
}
我想分享我发现的经验