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:'봄날은간다' },
'html과CSS 초급' 카테고리의 다른 글
2021-06-24 (Meta 크롤링과 일반 Soup 크롤링) (0) | 2021.06.24 |
---|---|
2021-06-23 (POST와GET 사용하기) (0) | 2021.06.23 |
2021-06-21 (Pymongo DB 명령어) (0) | 2021.06.21 |
2021-06-19 (Soup 일반 크롤링과 For문으로 풀기) (0) | 2021.06.19 |
2021-06-16 ($.Ajax 사용하기) (0) | 2021.06.16 |