본문 바로가기

데이터 분석 기술 블로그

검색하기
데이터 분석 기술 블로그
프로필사진 데이터분석가 이채은

  • 분류 전체보기 (424) N
    • SQL (155)
      • 문제풀이 (93)
      • 개념 (62)
    • 데이터 분석 (29)
      • Python (5)
      • R (0)
      • Tableau (10)
      • 개념 (5)
    • 데이터 사이언스 (152)
      • 자료구조 (7)
      • 알고리즘 (66)
      • 수리 통계학 (59)
      • 선형대수학 (20)
    • SW (84)
      • DB (27)
      • 백엔드 (40)
      • 프론트엔드 (17)
    • Illustrator & Photoshop (1)
    • 간호학과 (0)
Guestbook
Tags
  • SQL
  • DB
  • N:1
  • delete
  • 스택
  • outer join
  • ORM
  • drf
  • migrations
  • Tree
  • Vue
  • 트리
  • 완전검색
  • Django
  • create
  • update
  • Queue
  • 쟝고
  • 통계학
  • stack
  • M:N
  • 백트래킹
  • 그리디
  • Article & User
  • 뷰
  • 큐
  • regexp
  • count
  • distinct
  • 이진트리
more
«   2025/06   »
일 월 화 수 목 금 토
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
Notice
Recent Posts
Link
관리 메뉴
  • 글쓰기
  • 방명록
  • RSS
  • 관리

목록프로필 (1)

데이터 분석 기술 블로그

DB에 대하여(18)_프로필 기능 구현 (feat. Django)

프로필 페이지각 회원의 개인 프로필 페이지에 팔로우 기능을 구현하기 위해 프로필 페이지를 먼저 구현해 봅시다.url을 작성합니다.# accounts/urls.pyurlpatterns = [ ... path('profile//', views.profile, name='profile'),]view 함수를 작성합니다.# accounts/views.pyfrom django.contrib.auth import get_user_modeldef profile(request, username): User = get_user_model() person = User.objects.get(username=username) context = { 'person': person, } ..

SW/DB 2024. 5. 5. 20:53
이전 Prev 1 Next 다음

Blog is powered by kakao / Designed by Tistory

티스토리툴바