Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- boj_15685
- boj15954
- boj10942
- boj7579
- boj10775
- boj2252
- onTouchListner
- Spring
- springboot
- boj15998
- onTouch
- react
- 동적계획법
- boj15654
- TDD
- nestedjson
- BFS
- mysql
- DynamicProgramming
- DP
- django
- BOJ
- boj15683
- DFS
- boj_15684
- euclideanalgorithm
- backtracking
- testdb
- bruteforce
- boj2239
Archives
- Today
- Total
목록Python (1)
이마닷의 블로그
[django] 템플릿에서 context object의 메소드 사용하기
django의 View에서는 Template에서 사용될 context 변수들과 함께 해당 웹 페이지를 띄우게 되고, template에서는 이러한 context들을 웹 페이지 내에 적절히 배치함으로써 웹 페이지를 작성한다. 일반적으로 context 변수들은 object 형태로 주어지게 되는데, 각각의 object는 각각의 Model(class)에 속하게 되므로, 해당 인스턴스에서 클래스 메소드들을 사용할 수 있다. 이를 위해 해주어야 할 작업에 대해 알아보고자 한다. 1. Python의 decorator 기능 def example_decorator(func): def decorated(): print("decorated!") func() return decorated class ExampleDecorato..
python
2020. 1. 15. 19:05