COMING SOON 🚀

Python Flask Tutorial #3 - Forms and User Input

· 6년 전 · 1291

 

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,539
6년 전 조회 1,478
6년 전 조회 1,122
6년 전 조회 929
6년 전 조회 1,203
6년 전 조회 1,836
6년 전 조회 1,300
6년 전 조회 1,013
6년 전 조회 1,388
6년 전 조회 989
6년 전 조회 1,228
6년 전 조회 1,455
6년 전 조회 1,248
6년 전 조회 1,635
6년 전 조회 1,292
6년 전 조회 1,227
6년 전 조회 1,156
6년 전 조회 2,552
6년 전 조회 1,071
6년 전 조회 2,596
6년 전 조회 1,062
6년 전 조회 1,174
6년 전 조회 1,219
6년 전 조회 1,433
6년 전 조회 1,129
6년 전 조회 1,178
6년 전 조회 1,183
6년 전 조회 1,302
6년 전 조회 1,031
6년 전 조회 934