TIL( Today I Learned)
20-11-02 월
-
팀공유 시간
- 지난 작업
- Git flow, Azure DevOps process
- 공유시간 피드백 받은것 적용하기
20-11-03 화
-
작업 구조 변경
- 독립 모듈 => 내부 모듈
- 외부 미팅
20-11-04 수
- 작업물 기획 다시 검토하기
- 작업 공유 시간
20-11-05 목
- HTTP 처리 모듈 만들기
- BERT 코드 읽기
20-11-06 금
- 통신 Interface 고려
-
http 처리 모듈 피드백
- => 보류
- 14:00 기획 리뷰
- BERT 코드 읽기
TEL (Trial and Error Log)
20-11-05
-
ERROR: requests value Error
- SITUATION: Requests Param data 에 list 전송
- REASON: k, v 쌍으로 parsing 하는데 list 가 들어오면 parse를 할 수가 없다.
- SOLUTION: json dumps 하거나, dict로 바꿔라
-
ERROR: AttributeError: ‘Response’ object has no attribute ‘message’
- SITUATION: 에러 메시지 보려 했다.
- REASON: 잘못된 attr로 찍었다.
- SOLUTION: reason <= message
-
ERROR: Signature of method ‘CourseModuleUpdateView.dispatch()’ does not match signature of base method in class ‘View’ less…
- SITUATION: child class overriding parents class method
- REASON: 부모와 동일한 argument를 받도록 하기 위해 warning
- SOLUTION: *args, **kwargs로 args를 고정되어 있지 않도록 하면 warning 없어진다.