๋ฐ์ํ
์ฌ์ฉ ์คํ : html, css, bootstrap, ajax, mongoDB
์๋ฃ ๊ตฌ์กฐ :
templates์ index.html ์ฝ๋
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<title>๊น์น๋ฏผ ๋ฏธ๋ํํผ - ํฌ๋ช
๋ก</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200;300;400;500;600;700;900&display=swap"
rel="stylesheet">
<style>
* {
font-family: 'Noto Serif KR', serif;
}
.mypic {
width: 100%;
height: 300px;
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://file.namu.moe/file/17a23b19305d0841bea89155d541c4d7f8117255ec2dbca20469b0ba3a71155b88896cb501dafff4fe6b04e59b382b82");
background-position: center 25%;
background-size: contain;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.mypost {
width: 95%;
max-width: 500px;
margin: 20px auto 20px auto;
box-shadow: 0px 0px 3px 0px black;
padding: 20px;
}
.mypost > button {
margin-top: 15px;
}
.mycards {
width: 95%;
max-width: 500px;
margin: auto;
}
.mycards > .card {
margin-top: 10px;
margin-bottom: 10px;
}
</style>
<script>
$(document).ready(function () {
set_temp()
show_comment()
});
function set_temp() {
$.ajax({
type: "GET",
url: "http://spartacodingclub.shop/sparta_api/weather/seoul",
data: {},
success: function (response) {
$('#temp').text(response['temp'])
}
})
}
function save_comment() {
let name = $('#name').val()
let comment = $('#comment').val()
$.ajax({
type: 'POST',
url: '/homework',
data: {'name_give':name, 'comment_give':comment},
success: function (response) {
alert(response['msg'])
window.location.reload()
}
})
}
function show_comment() {
$('comment-list').empty()
$.ajax({
type: "GET",
url: "/homework",
data: {},
success: function (response) {
console.log('get ๋ค์ด์ด')
let rows = response['fans']
console.log(rows)
for (let i = 0; i < rows.length; i++) {
let name = rows[i]['name']
let comment = rows[i]['comment']
let temp_html = `<div class="card">
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>${comment}</p>
<footer class="blockquote-footer">${name}</footer>
</blockquote>
</div>
</div>`
$('#comment-list').append(temp_html)
}
console.log(response['fans'])
}
});
}
</script>
</head>
<body>
<div class="mypic">
<h1>๊น์น๋ฏผ ํฌ๋ช
๋ก</h1>
<p>ํ์ฌ๊ธฐ์จ: <span id="temp">36</span>๋</p>
</div>
<div class="mypost">
<div class="form-floating mb-3">
<input type="text" class="form-control" id="name" placeholder="url">
<label for="floatingInput">๋๋ค์</label>
</div>
<div class="form-floating">
<textarea class="form-control" placeholder="Leave a comment here" id="comment"
style="height: 100px"></textarea>
<label for="floatingTextarea2">์์๋๊ธ</label>
</div>
<button onclick="save_comment()" type="button" class="btn btn-dark">์์ ๋จ๊ธฐ๊ธฐ</button>
</div>
<div class="mycards" id="comment-list">
</div>
</body>
</html>
app.py ์ฝ๋
- mongoDB ๋ ๋ณธ์ธ์ DB ๊ณ์ ์์์ ๋ฐ์ดํฐ๋ฒ ์ด์ค URL ์ ์ด์ฉํ๋ฉด ์ ์ ๊ฐ๋ฅํฉ๋๋ค
from flask import Flask, render_template, request, jsonify
app = Flask(__name__)
# DB
from pymongo import MongoClient
client = MongoClient('mongodb+srv://test:test@cluster0.wpvuwzi.mongodb.net/Cluster0?retryWrites=true&w=majority')
db = client.dbsparta
@app.route('/')
def home():
return render_template('index.html')
@app.route("/homework", methods=["POST"])
def homework_post():
name_receive = request.form['name_give']
comment_receive = request.form['comment_give']
doc = {
'name': name_receive,
'comment': comment_receive,
}
db.fan.insert_one(doc)
return jsonify({'msg': 'POST ์ฐ๊ฒฐ ์๋ฃ!'})
@app.route("/homework", methods=["GET"])
def homework_get():
fan_list = list(db.fan.find({}, {'_id':False}))
# print(fan_list)
return jsonify({'fans': fan_list})
if __name__ == '__main__':
app.run('0.0.0.0', port=5000, debug=True)
# 4์ฃผ์ฐจ ๊ณผ์
# 2๊ฐ์ง ๊ธฐ๋ฅ ๊ตฌํ
# ์์๋จ๊ธฐ๊ธฐ ( POST ) : ์ ๋ณด ์
๋ ฅ ํ '์์ ๋จ๊ธฐ๊ธฐ' ๋ฒํผ ํด๋ฆญ์ ์ฃผ๋ฌธ ๋ชฉ๋ก์ ์ถ๊ฐ
# ํฌ๋ช
๋ก ํ์ฉํ๊ธฐ
์คํ๋ฅดํ ์ฝ๋ฉ ํด๋ฝ ์น๊ฐ๋ฐ 4์ฃผ์ฐจ ๋ด์ฉ์ด๋ฉฐ, ๊ฒฐ๊ณผ ํ๋ฉด์ ๋ค์๊ณผ ๊ฐ์ต๋๋ค.
์คํ ์์
๋ฐ์ํ
'๐๏ธ์ํํธ์จ์ด > ๐JavaScript' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[์น์๋น์ค ๋ฐฐํฌ] AWS EC2 + Filezila ์ด์ฉํ๊ธฐ (1) | 2022.09.23 |
---|---|
[Ajax, Flask] ๋ฒํท๋ฆฌ์คํธ ์น ํ์ด์ง ๋ง๋ค๊ธฐ (0) | 2022.09.23 |
[html + css + js] ๊ณต๊ณต๊ธฐ์จ API ํ์ฉ - ajax (0) | 2022.09.20 |
[Vue.js] ๋ฌธ๋ฒ ๊ธฐ์ด 2ํธ(props, v-bind, v-on, router, axios) (0) | 2022.09.18 |
[Vue.js] ๋ฌธ๋ฒ ๊ธฐ์ด 1ํธ(props, v-bind, v-on, router, axios) (0) | 2022.09.18 |