flask 사용법

[venv 의 app.py]

from flask import Flask, render_template <<렌덜 템플릿을 임포트
app = Flask(__name__)

@app.route('/')
def home():
return render_template('index.html') <<메인페이지('/')에서 index.html 가져오기

if __name__ == '__main__':
app.run('0.0.0.0',port=5000,debug=True)

 

[prac 전체 프로젝트]

static 폴더 = css나 이미지파일 저장

templates 폴더 = html 저장

 

[GET]

APP => title_receive = request.args.get('title_give') 사용

요청 =>     type: "GET",
               url: "/test?title_give=봄날은간다",
               data: {},

 

[POST]

APP => title_receive = request.form['title_give']

요청 =>     type: "POST",
                url: "/test",
                data: { title_give:'봄날은간다' },

 

+ Recent posts