Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- css
- 프로그래머스
- 스파르타코딩클럽
- 22938번
- sql
- 장고이미지처리
- error
- 파이썬
- MongoDB
- 프론트엔드
- SEF2022
- ㅐㄱ이
- 반응형
- python
- django multi image
- 파이썬무료강의
- 참가후기
- html
- 장고 다중이미지
- 코딩기초트레이닝
- 스파르타
- jquery
- 네이버커넥트재단
- 20492번
- 무료강의
- GIT
- useState
- 프로그래머스입문
- 개인정보수집유효기간
- React
Archives
- Today
- Total
코딩,해볼까
05.13. [술술술_project. 6] MyPage Javascript 작업 (2) 본문
window.onload = () => {
let token = localStorage.getItem('payload');
console.log(token)
// {"token_type":"access","exp":1684129273,"iat":1683949273,"jti":"236844dc07aa4cb0905e4712c95bb0b4","user_id":1}
let user_id = token("user_id")
let user_id = token["user_id"]
// token is not a function
console.log(user_id)
console.log(token.user_id)
// undefined
// 127.0.0.1/:1 Refused to execute script from 'http://127.0.0.1:5500/index.js' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.
}
window.onload = () => {
console.log('로딩 완료!')
console.log(token)
// const user_id = token[-2] undefiend
const user_id = token.slice(-2, -1)
console.log(user_id)
}
'Back > TIL' 카테고리의 다른 글
05.19. 팀원들과 알고리즘 풀이 / 백준 / 별 찍기 강아지 세금 소수 찾기 (4) | 2023.05.19 |
---|---|
05.18. 팀원들과 알고리즘 풀이 / 백준 / 별찍기 윤년 고양이 백발백준 (2) | 2023.05.18 |
05.12. [술술술_project. 5] MyPage Javascrpit작업 (1) (0) | 2023.05.13 |
05.11. [술술술_project. 4] MyPage 작업 (2) (0) | 2023.05.11 |
05.10. [술술술_project. 3] MyPage 작업 (1) (0) | 2023.05.10 |
Comments