0
0

More than 3 years have passed since last update.

エンジニア単語帳(随時更新)

Last updated at Posted at 2020-11-18

エンジニア単語帳とは

完全に自己満で新しく覚えたことをまとめていきます!

MVC(モデル・ビュー・コントローラ)

レンダリング

テンプレートに記述されている変数などを実際に使う値に置き換えて表示を完成させる処理

render関数

レンダリングを行う関数
render(Httprequest, 使用するテンプレートファイルのパス)

HTTPメソッド

データをインターネット上でやり取りするときに使われるプロトコル(手続き)

マイグレーション

データベースの移行を行うための機能。

  • マイグレーションファイルの作成 
python manage.py makemigrations アプリの名前
  • マイグレーションの適用
python manage.py migrate

を行う

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0