서버에서 HTML로 데이터 전달
@app.route('/profile/<user_name>')
def show_profile(user_name):
return render_template('profile.html', user_name=user_name)
<user_name> 의 값이 show_profile() 메서드의 매개변수로 들어가서
render_template() 메서드가 실행될 때 user_name=user_name 와 같은 형태로 같이 실어 보낸다
'Python' 카테고리의 다른 글
[파이썬] pymongo.errors.OperationFailure: Authentication failed 에러 (0) | 2022.04.21 |
---|---|
[파이썬] pymongo - ObjectId 로 인덱스 사용하기 (0) | 2022.04.21 |
[파이썬] Flask - GET 방식에서 Ajax 파라미터 사용하는법 (0) | 2022.04.20 |
[파이썬] 예외처리 - try, except (0) | 2022.04.18 |
[파이썬] f-string (0) | 2022.04.18 |