Hey I have one question about ReactJS, because I try make modal using react-bootstrap
and open it in another ponent. But nothing happens, please look on my code and give me some advices. I try invoke fuunction from LoginModal
ponent using onClick="LoginModal.handleShow"
but this no working.
import React, { Component } from 'react';
import {
Popover,
Tooltip,
Modal
} from 'react-bootstrap';
class LoginModal extends React.Component {
constructor(props, context){
super(props, context);
this.handleShow = this.handleShow.bind(this);
this.handleClose = this.handleClose.bind(this);
this.state = {
show: false
}
}
handleShow() {
this.setState({ show: true })
}
handleClose(){
this.setState({ show: false })
}
render() {
return (
<div>
<Modal show={this.state.show} onHide={this.handleClose}>
<Modal.Header closeButton>
<Modal.Title>Modal Heading</Modal.Title>
</Modal.Header>
<Modal.Body>
<h1>This is modal body</h1>
</Modal.Body>
</Modal>
</div>
)
}
}
export default LoginModal
And App ponent which is rendered
import React, { Component } from 'react';
import LoginModal from './ponents/Login/Login'
import {
Navbar,
NavItem,
Nav,
Button
} from 'react-bootstrap';
import {
BrowserRouter as Router,
Route,
Switch,
} from 'react-router-dom'
class App extends Component {
render(){
return (
<Router>
<div className="menu-bar">
<LoginModal></LoginModal>
<Navbar inverse collapseOnSelect>
<Nav>
<NavItem>
<Button onClick={LoginModal.handleShow}>Login</Button>
</NavItem>
</Nav>
</Navbar>
<Switch>
<Route exact path="/" ponent={Home}/>
</Switch>
</div>
</Router>
)
}
}
export default App;
Hey I have one question about ReactJS, because I try make modal using react-bootstrap
and open it in another ponent. But nothing happens, please look on my code and give me some advices. I try invoke fuunction from LoginModal
ponent using onClick="LoginModal.handleShow"
but this no working.
import React, { Component } from 'react';
import {
Popover,
Tooltip,
Modal
} from 'react-bootstrap';
class LoginModal extends React.Component {
constructor(props, context){
super(props, context);
this.handleShow = this.handleShow.bind(this);
this.handleClose = this.handleClose.bind(this);
this.state = {
show: false
}
}
handleShow() {
this.setState({ show: true })
}
handleClose(){
this.setState({ show: false })
}
render() {
return (
<div>
<Modal show={this.state.show} onHide={this.handleClose}>
<Modal.Header closeButton>
<Modal.Title>Modal Heading</Modal.Title>
</Modal.Header>
<Modal.Body>
<h1>This is modal body</h1>
</Modal.Body>
</Modal>
</div>
)
}
}
export default LoginModal
And App ponent which is rendered
import React, { Component } from 'react';
import LoginModal from './ponents/Login/Login'
import {
Navbar,
NavItem,
Nav,
Button
} from 'react-bootstrap';
import {
BrowserRouter as Router,
Route,
Switch,
} from 'react-router-dom'
class App extends Component {
render(){
return (
<Router>
<div className="menu-bar">
<LoginModal></LoginModal>
<Navbar inverse collapseOnSelect>
<Nav>
<NavItem>
<Button onClick={LoginModal.handleShow}>Login</Button>
</NavItem>
</Nav>
</Navbar>
<Switch>
<Route exact path="/" ponent={Home}/>
</Switch>
</div>
</Router>
)
}
}
export default App;
Share
Improve this question
asked Jun 3, 2018 at 19:15
Mat.NowMat.Now
1,7253 gold badges19 silver badges31 bronze badges
1 Answer
Reset to default 9Use ref
keyword to take reference of LoginModal
. Then call handleShow
from the reference.
class App extends Component {
loginModalRef = ({handleShow}) => {
this.showModal = handleShow;
}
onLoginClick = () => {
this.showModal();
}
render(){
return (
<Router>
<div className="menu-bar">
<LoginModal ref={this.loginModalRef} ></LoginModal>
<Navbar inverse collapseOnSelect>
<Nav>
<NavItem>
<Button onClick={this.onLoginClick}>Login</Button>
</NavItem>
</Nav>
</Navbar>
<Switch>
<Route exact path="/" ponent={Home}/>
</Switch>
</div>
</Router>
)
}
}
Here I prepare stackblitz snippet for you to test it online. https://stackblitz./edit/react-bxn5kj?file=index.js
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743660045a4486035.html
评论列表(0条)