Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- componentWillMount(){
- fetch('http://localhost:8080/javaee8.essentials/resources/user')
- .then( (response) => {
- return response.text();
- })
- .then( (text) => {
- console.log(text);
- this.setState({msg: text});
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement