위코드 첫번째 장고 프로젝트!My very first Django project is to create a basic poll application.Had a tons of problem setting up on Mac OS with M1 chip.... Not too
I made a data table in MySQL database by using migrate command after writing the classes in models.py, refering to the below ERD(Entity Relationship
장고에서 해당 모델 object를 저장 할 때 2가지 과정을 거친다.첫 번째는 validator(controlled by blank) 즉 검증에서 가능한지 파악하고두 번째는 Database limitation(controlled by null) 데이터베이스에 넣을 때이
We use models.py which we wrote on C.R.U.D (1) post.@ Products/views.pyWhen we create resources, we use Post method among the Http Method. We also req
Django C.R.U.D Assignment 1
To maintain a many-to-many relationship between two tables in a database, the only way is to have a third table which has references to both of those
.png) .png) Django has a software design pattern called MVT (Model View Template). Model : handles database View : executes the business logic and i
CORS는 Cross Origin Resource Sharing의 약자로, 도메인 또는 포트가 다른 서버의 자원을 요청하는 매커니즘이다.최근 대부분의 웹 브라우저는 Javascript를 이용한 AJAX(Asynchronous Javascript XML)통신을 통한 데이
models.py 에서 Field 값에 Null=True 를 지정해 준 경우, create를 할 때 python get() 함수를 이용해서 아래와 같이 default 값을 None 값으로 지정해준다.만약 Field 값을 blank=True로 지정해주었을 경우, 아래와
ㅇ