본문 바로가기

전체 글

(148)
TIL 070423 https://blog.naver.com/imf4/220786995605 Javascript : alert 확인/취소 창 구현하기 Javascript : alert 확인/취소 창 구현하기 HTML &nb... blog.naver.com confirm. 정말로 삭제할건지 물어볼 때 사용했었다. 로그인 페이지로 이동할건지 그냥 계속 사이트를 둘러볼건지 물어볼까 했지만 그냥 무조건 로그인으로 유도하도록 결정. https://zzzmh.tistory.com/6 textarea 글자수 제한 어떻게 주나요? 흔하게 사용하고 간단하지만 막상하려면 귀찮아지는 소스ㅎ textarea에 200자를 초과하여 입력할 경우 얼럿창 안내와 함께 200자이내로 입력란이 제한되는 샘플입니다 See the Pen textarea 20..
TIL 070323 https://chancoding.tistory.com/237 [JS] 자바스크립트 몫과 나머지 구하기 - 2가지 방법 목차 javascript의 몫과 나머지를 구하는 방법에 대해서 알아보겠습니다. 몫을 구하는 방법은 Math.floor을 사용하는 방법과 parseInt를 사용하는 방법으로 두 가지가 있습니다. 몫 Javascript에서 몫을 구 chancoding.tistory.com 파이썬에서 몫만 구할 수 있는 // 연산자가 자바스크립트에선 존재하지 않는다고 한다. 대신 버림을 해주는 Math.floor() 또는 정수로 만들어주는 parseInt()를 사용하서 나눗셈의 몫만 구할 수 있다. https://kosis.kr/visual/populationKorea/populationMoreIndex.d..
TIL 063023 https://stackoverflow.com/questions/15617595/paginate-relationship-in-django-rest-framework Paginate relationship in Django REST Framework? We are using Django REST Framework for our API and we have a need to paginate relationship fields that return multiple items. To demonstrate using examples similar to those in the documentation: ... stackoverflow.com 이게 내가 원하는 것과 제일 가까운 코드 같아 보이는데 적용이 안된다 ㅜㅠ..
TIL 062923 https://stackoverflow.com/questions/34446415/joining-functions-onclick-and-onkeyup joining functions onclick and onkeyup I just went over my code with an experienced developer and he made a lot of very helpful changes, but, unfortunately, the code did not save properly and I lost all the edits!!! The main thing he h... stackoverflow.com https://88240.tistory.com/52 [JavaScript] input에 입력 후 enter..
TIL 062823 보호되어 있는 글입니다.
TIL 062723 https://lee-seul.github.io/django/2019/02/21/django-extend-manytomanyfield.html Django ManyToManyField 확장하기 ... lee-seul.github.io 루트스팟! https://stackoverflow.com/questions/52342481/valueerror-at-profile-the-image-attribute-has-no-file-associated-with-it ValueError at /profile/:The 'image' attribute has no file associated with it When a user registers for my app.I receive this error when he reac..
TIL 062623 https://wnsdufdl.tistory.com/235 지도 페이지 미리 작업중: tourAPI와 카카오맵 연동시킴,4주 프로젝트 + 6, 코드스테이츠 +130 그동안 SR을 하며 시간날때마다 관광지 tourAPI와 카카오맵을 연동하는 방법을 연구했다. 카카오맵과 TourAPI를 이용한 지도 클릭한 지점 반경 10km의 관광지들을 표시, 2주프로젝트때 사용했던 검색 wnsdufdl.tistory.com 관광지 반경 10km 맛집 표시 이런 걸 할 수 있을 것 같다. 일단은 마이페이지와 테스트코드 작성 후 추가로 할 시간이 있다면 시도해보는 것도 좋을 듯. AI, 배포와 소셜로그인 부분은 더 공부해야겠다. https://pypi.org/project/django-cleanup/ django-cleanu..
TIL 062323 https://parkhyeonchae.github.io/2020/04/13/django-project-25/ Django 25. 업로드(MEDIA) 파일 동시 수정 / 삭제 구현 - Today.log 2020-04-13 글 수정, 삭제시 서버단에서도 동시 처리가 되도록 하고 URL로 MEDIA파일 접근을 제한합니다. 이전 파일업로드 / 다운로드 포스팅과 이어집니다. 업로드된 파일이 있는 게시글을 삭제하거 parkhyeonchae.github.io 글 수정 시 이미지 삭제 https://hianna.tistory.com/446 [Javascript] 반올림(round), 올림(ceil), 내림(floor) - 소수점, 음수,자리수 지정 올림(Math.ceil()) Math.ceil() 함수 정수 올림 (..