Advertisement
Guest User

Untitled

a guest
Apr 13th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. componentWillMount(){
  2. fetch('http://localhost:8080/javaee8.essentials/resources/user')
  3. .then( (response) => {
  4. return response.text();
  5. })
  6. .then( (text) => {
  7. console.log(text);
  8. this.setState({msg: text});
  9. });
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement