항해99 3기 스터디 2조 5회 (flask)

CH_Hwang·2021년 7월 27일
0

post는

url :/test
data :test_give:~~

flask 종료방법은..?
컨트롤 c로 안되서 작업관리자로 종료..
또는 터미널창을 종료하기.

from flask import Flask, render_template, jsonify, request

app = Flask(__name__)

from pymongo import MongoClient

client = MongoClient('localhost', 27017)
db = client.dbindex

post에서 데이터를 저장할 값과 함수를 실행했을때 메세지, 불러올 데이터 등을 설정하고

get에서 그 값을 호출하거나 하는 역할을 하면됨

html 2개를 불러올때는 app.route를 설정해주면 됨

ex)

@app.route('/')
def index():
    return render_template('index.html')

@app.route('/my_stock')
def table():
    return render_template('my_stock.html')

0개의 댓글