Django 학습 4주일 차 - TFIDF Algorithm & Django Filter
Node.js 프로젝트는 MVC, Django 프로젝트는 MTV이다. TFIDF 유사도 도출 알고리즘을 Django Filter와 결합하는 데 성공했다! Node.js의 MVC 그리고 Django의 MTV Node.js의 프로젝트는 세 가지 파트로 구성되어 있다. Model: Model represents shape of the data. View: View is a user interface. Controller: Controller handles the user request. 만약 Django의 파일을 Node.js와 1:1 대응을 시켜보자면, Django의 models.py는 Model이다 Django의 templates (.html & .css)는 View이다. Django의 views.py, ..