SlideShare a Scribd company logo
❤
jangjunha<jangjunha113@gmail.com>
Flask 소수전공 강의자료 - 2차시
<html>
<h1> </h1>
<article>
<p> </p>
</article>
</html>
Flask 소수전공 강의자료 - 2차시
render_template('hello.html')
/application.py
/templates
/hello.html
/profile.html
/static
/logo.png
/app.js
/app.css
/application.py
/templates
/hello.html
/profile.html
/static
/logo.png
/app.js
/app.css
/ index.html
/users user_list.html
/users/HeeGyu profile.html
profile.html
Flask 소수전공 강의자료 - 2차시
Flask 소수전공 강의자료 - 2차시
<html>
<h1> </h1>
<article>
<p> </p>
</article>
</html>
Flask 소수전공 강의자료 - 2차시
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>HiHi</title>
</head>
<body>
<h1> {{ countdown }} </h1>
</body>
</html>
render_template('index.html', countdown=365)
Flask 소수전공 강의자료 - 2차시
<h3> </h3>
<ul>
{% for comment in comments %}
<li>
<h4>{{ comment.writer }}:</h4>
<p>{{ comment.content }}</p>
</li>
{% endfor %}
</ul>
comments = [
{ 'writer': ' ', 'content': ' ?' },
{ 'writer': ' ', 'content': '♚♚히어로즈 …' }
]
return render_template('index.html', comments=comments)
Flask 소수전공 강의자료 - 2차시
(...)
<body>
<h1> {{ countdown }}</h1>
{% block content %}
{% endblock %}
</body>
</html>
{% extends "layout.html" %}
{% block content %}
<h3> </h3>
<ul>
{% for comment in comments %}
<li>
<h4>{{ comment.writer }}:</h4>
<p>{{ comment.content }}</p>
</li>
{% endfor %}
</ul>
{% endblock %}
{% extends "layout.html" %}
{% block content %}
<form action="/" method="post">
<input type="text" name="writer" placeholder=" "><br>
<textarea name="content" placeholder=" "></textarea><br>
<input type="submit" value=" "><br>
</form>
{% endblock %}
Flask 소수전공 강의자료 - 2차시
/about
Flask 소수전공 강의자료 - 2차시
Flask 소수전공 강의자료 - 2차시
<form action="/new_comment" method="post">
<input type="text" name="writer" placeholder=" ">
<textarea name="content" placeholder=" "></textarea>
<input type="submit" value=" ">
</form>
from flask import Flask, request
@app.route('/new_comment', methods=['POST'])
def post_comment():
print(request.form['writer'])
(...)
request.form
https://search.naver.com/search.naver?ie=UTF-8&query=2017+
ie=UTF-8
query=2017+
from flask import Flask, request
@app.route('/list')
def comment_list():
print(request.args.get('page', 1))
(...)
request.args
• request.form
• request.args
• request.values
• request.cookies
• request.headers
Flask 소수전공 강의자료 - 2차시
Flask 소수전공 강의자료 - 2차시
Flask 소수전공 강의자료 - 2차시
Flask 소수전공 강의자료 - 2차시
Flask 소수전공 강의자료 - 2차시
Flask 소수전공 강의자료 - 2차시

More Related Content

PPTX
Css pseudo classes
PPTX
Css backgrounds
PDF
PPTX
Css colors
PDF
Html Layout Explained
TXT
Panel de anclas(x)
PPTX
Blade Template and Laravel
DOC
poornamatha : poornamitham poornath-poorna-muthatchyathe |
Css pseudo classes
Css backgrounds
Css colors
Html Layout Explained
Panel de anclas(x)
Blade Template and Laravel
poornamatha : poornamitham poornath-poorna-muthatchyathe |

What's hot (18)

PPTX
Website Series 2 - HTML
PPTX
Css positioning
ZIP
引き出しとしてのDjango - SoozyCon7
PPTX
Quickstrat fusionchart
KEY
Basic HTML
PDF
Browser Mechanics & CSS
PPTX
Java script events
PDF
6. CSS
PPTX
Css, CaseCading Style Sheet
DOC
Soa lab 3
PDF
Responsive Templates in Joomla!
TXT
Code
PPTX
Js placement
DOC
HTTP REQUEST RESPONSE OBJECT - WEB APPLICATION USING C# LAB
TXT
PDF
HTML and CSS Sitting in a Tree. K i s s i n O M G
Website Series 2 - HTML
Css positioning
引き出しとしてのDjango - SoozyCon7
Quickstrat fusionchart
Basic HTML
Browser Mechanics & CSS
Java script events
6. CSS
Css, CaseCading Style Sheet
Soa lab 3
Responsive Templates in Joomla!
Code
Js placement
HTTP REQUEST RESPONSE OBJECT - WEB APPLICATION USING C# LAB
HTML and CSS Sitting in a Tree. K i s s i n O M G
Ad

Similar to Flask 소수전공 강의자료 - 2차시 (20)

PDF
#3 HTML & CSS [know-how]
PDF
Sample html basic projects
PPTX
uptu web technology unit 2 html
PPTX
計算機概論20161205
PDF
Django Templates
PDF
Ng init | EPI Sousse
PPTX
HTML Lesson HTML FormsHTML Formsvv4.pptx
PPTX
Html basics-auro skills
PDF
What is HTML - An Introduction to HTML (Hypertext Markup Language)
PPT
LIS3353 SP12 Week 4
PDF
Hypertext_markup_language
KEY
Fronttechnieken met HTML5 en de Slice-template
PDF
PDF
HTML Head Section Elements
PPT
PDF
1-learning-basic-html-intro-to-web-development.pdf
PDF
2. CSS Chapter Roadmap and Full Source Code.pdf
PPTX
Introduction to HTML5
PDF
Unit III CSS & JAVA Script.pdf
DOCX
Html.docx
#3 HTML & CSS [know-how]
Sample html basic projects
uptu web technology unit 2 html
計算機概論20161205
Django Templates
Ng init | EPI Sousse
HTML Lesson HTML FormsHTML Formsvv4.pptx
Html basics-auro skills
What is HTML - An Introduction to HTML (Hypertext Markup Language)
LIS3353 SP12 Week 4
Hypertext_markup_language
Fronttechnieken met HTML5 en de Slice-template
HTML Head Section Elements
1-learning-basic-html-intro-to-web-development.pdf
2. CSS Chapter Roadmap and Full Source Code.pdf
Introduction to HTML5
Unit III CSS & JAVA Script.pdf
Html.docx
Ad

More from Junha Jang (9)

PDF
Flask 소수전공 강의자료 - 4차시
PDF
Flask 소수전공 강의자료 - 3차시
PDF
Flask 소수전공 강의자료 - 1차시
PDF
Java 스터디 강의자료 - 1차시
PDF
C언어 스터디 강의자료 - 5차시
PDF
C언어 스터디 강의자료 - 4차시
PDF
C언어 스터디 강의자료 - 3차시
PDF
C언어 스터디 강의자료 - 2차시
PDF
C언어 스터디 강의자료 - 1차시
Flask 소수전공 강의자료 - 4차시
Flask 소수전공 강의자료 - 3차시
Flask 소수전공 강의자료 - 1차시
Java 스터디 강의자료 - 1차시
C언어 스터디 강의자료 - 5차시
C언어 스터디 강의자료 - 4차시
C언어 스터디 강의자료 - 3차시
C언어 스터디 강의자료 - 2차시
C언어 스터디 강의자료 - 1차시

Recently uploaded (20)

DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PDF
Well-logging-methods_new................
PPTX
Artificial Intelligence
PPTX
Current and future trends in Computer Vision.pptx
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PDF
737-MAX_SRG.pdf student reference guides
PPTX
Internet of Things (IOT) - A guide to understanding
PPTX
Safety Seminar civil to be ensured for safe working.
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PDF
composite construction of structures.pdf
PPTX
additive manufacturing of ss316l using mig welding
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPTX
CH1 Production IntroductoryConcepts.pptx
PPTX
bas. eng. economics group 4 presentation 1.pptx
PDF
PREDICTION OF DIABETES FROM ELECTRONIC HEALTH RECORDS
PPTX
OOP with Java - Java Introduction (Basics)
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
CYBER-CRIMES AND SECURITY A guide to understanding
Well-logging-methods_new................
Artificial Intelligence
Current and future trends in Computer Vision.pptx
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
R24 SURVEYING LAB MANUAL for civil enggi
737-MAX_SRG.pdf student reference guides
Internet of Things (IOT) - A guide to understanding
Safety Seminar civil to be ensured for safe working.
Foundation to blockchain - A guide to Blockchain Tech
composite construction of structures.pdf
additive manufacturing of ss316l using mig welding
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
CH1 Production IntroductoryConcepts.pptx
bas. eng. economics group 4 presentation 1.pptx
PREDICTION OF DIABETES FROM ELECTRONIC HEALTH RECORDS
OOP with Java - Java Introduction (Basics)

Flask 소수전공 강의자료 - 2차시