ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
앱 이름주소메소드설명View인자로 받아야하는 Model참고 사이트
2
KUMO/get루트 페이지
3
https://freekim.tistory.com/8
4
Accountsaccounts/signupget, post회원가입 페이지CreateAPIViewUser
https://h0ng3.tistory.com/28
5
Accountsaccounts/loginpost로그인 페이지LoginView
6
Accountsaccounts/logoutget로그아웃 페이지LogoutView
7
Accountsaccounts/idpwfindpost아이디/비밀번호 찾기
PasswordResetView
User
https://gaebyeokja.tistory.com/10
8
Accountsaccounts/ , include('allauth.urls')get, post소셜 로그인
9
Accountsaccounts/qrcodepost회원가입시 QR 생성User.QrCode
https://ddolcat.tistory.com/716
10
11
Customercustomer/<int:pk>get고객 루트 페이지
ReadonlyModelViewSet
User.QrCode
https://brownbears.tistory.com/82
12
Customercustomer/searchpost검색 페이지ModelViewSetShop
https://devdongbaek.tistory.com/142
13
Customercustomer/<int:pk>/profile
get, post, delete, patch
고객 마이 프로필ModelViewSet
Q(Customer) | Q(Coupon)
https://velog.io/@jxxwon/Django-Q-%EA%B0%9D%EC%B2%B4
14
Customercustomer/<int:pk>/bookmarkget, delete즐겨찾기ModelViewSetCustomer
15
Customercustomer/neighborhoodget주변 가게 둘러보기
ReadOnlyModelViewSet
Shop
https://codehanry.tistory.com/14
16
Customercustomer/<int:pk>/stampget내 스탬프 페이지
ReadOnlyModelViewSet
Coupon
17
Customercustomer/qna
get, post, delete, patch
고객센터ModelViewSetQnA
18
https://vixxcode.tistory.com/166
19
Shopshop/get업주 루트 페이지
20
Shopshop/Check_QRcode/post가게에 처음 들린 고객의 QR 체크시ModelViewSet
writer, shopname
21
Shopshop/get_Check_QRcode/put가게에 n번 들린 고객의 QR 체크시
http://www.incodom.kr/Django/DRF-Serializer
22
Shopshop/myshop_data/get내 가게 데이터
23
Shopshop/myshop/
get, post, put, delete
내 가게 detail
24
Shopshop/myshop/create_comment/post내 가게 리뷰 댓글 달기
25
Shopshop/profile/get업주 프로필
26
Shopshop/qna/
get, post, put, delete
업주 QnAModelViewSet
Q(Shop) | Q(Review)
27
ReadOnlyModelViewSet
Payment
28
ModelViewSetQnA
29
30
31
https://23life.tistory.com/84?category=969703
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Import 해야할 것
46
qrcode
47
django rest framework
48
49
50
51
52
53
54
알고있어야할 것들
55
다중 User model 만들 수 없음, Customer과 Shop model을 만들고 User를 FK로 받자.
56
57
58
Model 클래스필드명필드 타입설명
59
UserPKAutoField()
60
usernameCharField()
61
passwordCharField()
62
phonenumCharField()
63
created_atDateTimeField()
64
qrcodeImageField()
65
is_shopBooleanField()
66
67
68
69
70
ShopPKAutoField()
71
userForeignKey()
72
shop_nameCharField()
73
shop_phonenumCharField()
74
shop_locationCharField()
75
shop_imageImageField()
76
shop_introductionCharField()
77
shop_sectorCharField()
78
79
CustomerPKAutoField()
80
userForeignKey()
81
cu_nicknameCharField()
82
cu_levelBigIntegerField()
83
cu_bookmarklistmanytomany
84
85
86
87
88
89
90
91
ReviewPKAutoField()
92
writerForeignKey()
93
shopnameForeignKey()
94
review_starIntegerField()
95
review_photoImageField()
96
review_captionTextField()
97
98
99
100