Advertisement
Guest User

Untitled

a guest
Sep 29th, 2015
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. ----- BROWSER -------
  2. ------- USER NORMAL -------
  3. console.log(window.localStorage.getItem("user"))
  4. {"image":"https://scontent.xx.fbcdn.net/hprofile-xfa1/v/l/t1.0-1/c0.0.50.50/p50x50/31…016898341_1083083452_n.jpg?oh=29f1c127a4a480fd1a6e9d2981983895&oe=56962185","user_id":"893479594077576","name":"Filipe Oliveira","email":"filipe.jtoliveira@gmail.com","type":"Facebook","last_Login":"2015-09-29T22:45:56.204Z"}
  5.  
  6. console.log(typeof window.localStorage.getItem("user"));
  7. string
  8.  
  9. app.js:122 ------- USER STRINFGY -------
  10. console.log(JSON.stringify(window.localStorage.getItem("user")));
  11.  
  12. "{\"image\":\"https://scontent.xx.fbcdn.net/hprofile-xfa1/v/l/t1.0-1/c0.0.50.50/p50x50/31…16898341_1083083452_n.jpg?oh=29f1c127a4a480fd1a6e9d2981983895&oe=56962185\",\"user_id\":\"893479594077576\",\"name\":\"Filipe Oliveira\",\"email\":\"filipe.jtoliveira@gmail.com\",\"type\":\"Facebook\",\"last_Login\":\"2015-09-29T22:45:56.204Z\"}"
  13.  
  14. console.log(typeof JSON.stringify(window.localStorage.getItem("user")));
  15. string
  16.  
  17. ---- Funcionando no browser ----
  18.  
  19. JSON.parse(window.localStorage.getItem("user"));
  20. type Object
  21. {image: "https://scontent.xx.fbcdn.net/hprofile-xfa1/v/l/t1…g?oh=29f1c127a4a480fd1a6e9d2981983895&oe=56962185", user_id: "893479594077576", name: "Filipe Oliveira", email: "filipe.jtoliveira@gmail.com", type: "Facebook"…}
  22.  
  23.  
  24. ----------- DEVICE ---------------
  25.  
  26. ------- USER NORMAL -------
  27. window.localStorage.getItem("user)
  28.  
  29. Objeto
  30. typeof: String
  31.  
  32. ------- USER STRINGIFY -------
  33. Json.stringify(window.localStorage.getItem("user"))
  34.  
  35. Object
  36. typeof: String
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement