코딩/장고 (12) 썸네일형 리스트형 장고 프로젝트에서 admin접속 시 서버 꺼질때 장고 프로젝트를 설치하고 localhost:8000/admin에 접속하면 화면이 서버가 꺼질때가 있다. code.djangoproject.com/ticket/31067 #31067 (Python 3.7 crashes after trying to visit admin page on Windows and MacOS.) – Django #31067 closed Bug (invalid) Python 3.7 crashes after trying to visit admin page on Windows and MacOS. Reported by: Bruce Owned by: nobody Component: Core (Other) Version: 3.0 Severity: Normal Keywords: macOS, adm.. 장고에서 공통코드를 처리하는 법 스프링에서 mybatis로 쿼리를 짜서 할때는 공통테이블을 따로 만들고 조인을 해서 코드를 처리하였는데 orm에서는 이 부분을 처리하기가 애매했다. 그래서 검색을 해보니 www.inflearn.com/questions/16873 코드테이블 조인방법이 궁금합니다. - 인프런 질문 - 코드테이블 조인방법이 궁금합니다. 안녕하세요. 강의 잘 듣고있습니다. 질문은, 회사에서 Query를 작성하다보면 코드테이블을 여러번 join 하는 경우가 허다한데요. a join code 처럼 a 테이블 www.inflearn.com 이런 글이 있었고 마침 장고에서도 enum을 지원하고 있어 적용해봤다. # model.py class Student(models.Model): class YearInSchool(models.Tex.. 장고 onetomany 모델 생성하는법 장고에서 모델을 생성할때 주의할 점 - 자식 테이블에서 부모를 명시해줌 - 자식 테이블에서 부모의 테이블명과 같게 해주고 소문자로 1 2 3 4 5 6 7 8 9 # models.py class Academy(models.Model): name = models.CharField(max_length=200, null=False) class Subject(models.Model): subname = models.CharField(max_length=200, null=False) academy = models.ForeignKey(Academy, null=True, on_delete=models.CASCADE, related_name='subjects') cs 1 2 3 4 5 6 7 8 # serializer.. jwt 토큰이란 1. Post /users/login with username and password 2. Create a JWT with a secret 3. Returns the JWT to the Browser 4. Sends the JWT on the Authorization Header 5. Check JWT signature. Get user information from the JWT 6. Sends response to the client 서버에서 JWT토큰을 만들어서 보내면 사용자는 요청 할 때 마다 이 토큰을 보내야 한다. 이전 1 2 다음