MTVの修正


Section 1. モデル属性の追加


1.emailプロパティの追加

2. makemigrations
  • 新しい属性のDefault値クエリ
  • 1)提供a one-off default now:現在提供(入力)デフォルト値
  • '[email protected]'	# 지금 default값 입력
  • 2) Quit, and let me add default in models.py:直接入力モデルコード
  • emial = models.EmailField(null=True, default='~~')	# model 코드 직접 입력
    *(python basic)->(django basic)変更

    Section 2. Templateの変更


    1.email入力ボックスの追加

    2.結果画面

    Section 3. ビューの変更


    1.email値の処理