COMING SOON 🚀

Python Flask Tutorial #3 - Forms and User Input

· 6년 전 · 1295

 

WTFform을 사용해서 register 하는 방법과

flash를 사용해서 상단에 message를 뿌려 주는 방법 (status: Success, Info, Error등)

각 필드에 대한 Validation 그리고 error 메시지 처리까지

 

먼저 https://flask-wtf.readthedocs.io/en/stable/  를 인스톨합니다.

Features

  • Integration with WTForms.
  • Secure Form with CSRF token.
  • Global CSRF protection.
  • reCAPTCHA support.
  • File upload that works with Flask-Uploads.
  • Internationalization using Flask-Babel.

 

pipenv install flask-wtf

 

from flask_wtf import FlaskForm

from wtforms import StringField, PasswordField, SubmitField, BooleanField

from wtforms.validators import DataRequired, Length, Email, EqualTo

 

class RegistrationForm(FlaskForm):

    username = StringField('Username', 

                    validators=[DataRequired(), Length(min=2, max=20)])

    email = StringField('Email',

                    validators=[DataRequired(), Email()])

    password = PasswordField('Password', 

                    validators=[DataRequired()])

    confirm_password = PasswordField('Confirm Password', 

                    validators=[DataRequired(), EqualTo('password')])

    

    submit = SubmitField('Sign Up')

 

class LoginForm(FlaskForm):

    email = StringField('Email',

                    validators=[DataRequired(), Email()])

    password = PasswordField('Password', validators=[DataRequired()])

    remember = BooleanField('Remember Me')

    submit = SubmitField('Login')

 

이 두줄은 Flask에 내장된 함수 같습니다.

from wtforms import StringField, PasswordField, SubmitField, BooleanField

from wtforms.validators import DataRequired, Length, Email, EqualTo

 

1808292852_1575566403.5648.png

 

Login 까지...

 

1808292852_1575567270.1016.png

|
댓글을 작성하시려면 로그인이 필요합니다.

파이썬 게시판 만들기

+
제목 글쓴이 날짜 조회
6년 전 조회 1,545
6년 전 조회 1,479
6년 전 조회 1,125
6년 전 조회 932
6년 전 조회 1,206
6년 전 조회 1,839
6년 전 조회 1,303
6년 전 조회 1,014
6년 전 조회 1,389
6년 전 조회 992
6년 전 조회 1,231
6년 전 조회 1,460
6년 전 조회 1,249
6년 전 조회 1,637
6년 전 조회 1,296
6년 전 조회 1,230
6년 전 조회 1,158
6년 전 조회 2,556
6년 전 조회 1,073
6년 전 조회 2,600
6년 전 조회 1,064
6년 전 조회 1,175
6년 전 조회 1,225
6년 전 조회 1,436
6년 전 조회 1,131
6년 전 조회 1,188
6년 전 조회 1,187
6년 전 조회 1,305
6년 전 조회 1,035
6년 전 조회 939