[0330 개발일지] python 문법3
1. 학습한 내용
백엔드, flask를 배우고, 글리치 소스 적용
글리치 홈페이지(https://glitch.com/)에서 다양한 소스를 찾을 수 있다.
@app.route("/read/<int:id>/")
def read(id)
print(id):
return '''
<html>
<body>
<h1><a href="/">WEB</a></h1>
<ol>
<li><a href="/read/1/">html</a></li>
<li><a href="/read/2/">css</a></li>
<li><a href="/read/3/">js</a></li>
</ol>
<h2>read</h2>
Hello, read
</body>
</html>
def create():
content = '''
<form action="/create/">
<p><input type="text" name="q"(서버로이동하는이름) placeholder="title"></p>
<p><textarea name="body" placeholder="body"></textarea></p>
<p><input type="submit" value="create"></p>
<form>
...
return template(content)
2. 어려웠던 점
java와 언어가 달라서 어려웠다.
3. 해결방법
4. 학습소감
설치하고 알아야할 프로그램이 점점 늘어나고 있다.
html css 로 홈페이지를 만들어보겠다는 생각이었는데
많은 언어를 배우게 되니 따라가기 급급하다
빨리 홈페이지에 적용시켜봐야겠다.
Author And Source
이 문제에 관하여([0330 개발일지] python 문법3), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jwon11/0330-개발일지-python-문법3저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)