본문 바로가기

TIL

TIL 062123

https://stackoverflow.com/questions/71059139/modulenotfounderror-no-module-named-dj-rest-auth

 

ModuleNotFoundError: No module named 'dj_rest_auth'

I don't get why I am getting this problem I followed most the steps to the guide in installing: https://dj-rest-auth.readthedocs.io/en/latest/installation.html Except that I used pipenv install. Ho...

stackoverflow.com

pull 받은 후 pip install -r requirements.txt를 안해서 그런거였다.

아깝지만 다 지우고 makemigrations, migrate까지 하니 해결


https://goldswan.tistory.com/60

 

[Vue.js]"~ is declared but its value is never read.Vetur(6133)" 에러 해결 방법

현상 다음과 같은 에러 메세지 발생 ~ is declared but its value is never read.Vetur(6133) 원인 선언한 메서드를 return에 적지 않아서 발생하는 문제 선언한 메서드를 이벤트에 연결했는데도 원하는대로 동작

goldswan.tistory.com

https://onibmag.tistory.com/8

 

[HTML/JS] Uncaught TypeError: is not a function 오류

문제 html에는 아래의 코드를 썼고 1 cs js에 selectMonth라는 이름의 function을 만들었다. 근데 아래와 같은 오류가 발생했다. selectMonth is not a function at HTMLSelectElement.onchange 해결 html의 id 이름과 js의 func

onibmag.tistory.com

다른 js파일에서 import 후 함수 안 불러와짐 ㅜㅠ

window.함수명 = 함수명

이렇게 맨 밑에 써주면 된다.


git add .
git stash
git switch -c feat/users
git stash apply

git add .
커밋 후 다시 보내기

 

M이나 U표시가 있을 때 git checkout -b <새브랜치명>으로 새로운 브랜치를 만들면서 동시에 switch하는건 가능한데 기존에 작업하던 브랜치로 switch하는건 안되나보다.

그럴 때 stash


 

'TIL' 카테고리의 다른 글

TIL 062323  (0) 2023.06.23
TIL 062223  (0) 2023.06.23
TIL 062023  (0) 2023.06.20
TIL 061923  (0) 2023.06.19
TIL 061623  (0) 2023.06.17