-2
對於方面,我看到了它的反應組件`window.jqueryFoo = false;`是什麼意思?
export default class pageWithModal extends React.Component {
constructor(props) {
super(props);
window.jqueryFoo = false;
this.state = {
modal: false,
value: ''
};
}
handleModalOpen =() => {...};
handleModalClose =() => {...};
render()...
它有什麼作用?谷歌搜索沒有發現類似的東西
'我在反應組件中看到它是組件中唯一對'jqueryOn'的引用嗎? –
是的,只有在整個代碼庫中 –