{"id":2649,"date":"2019-08-08T23:00:18","date_gmt":"2019-08-08T14:00:18","guid":{"rendered":"https:\/\/blog.boxcorea.com\/wp\/?p=2649"},"modified":"2019-08-08T23:00:18","modified_gmt":"2019-08-08T14:00:18","slug":"django-2-2-get-post%eb%a5%bc-%eb%8f%99%ec%9d%bc%ed%95%9c-%ed%85%9c%ed%94%8c%eb%a6%bf%ec%97%90-%ed%91%9c%ec%8b%9c%ed%95%98%ea%b8%b0","status":"publish","type":"post","link":"https:\/\/blog.boxcorea.com\/wp\/archives\/2649","title":{"rendered":"[django 2.2] Get\/Post\ub97c \ub3d9\uc77c\ud55c \ud15c\ud50c\ub9bf\uc5d0 \ud45c\uc2dc\ud558\uae30."},"content":{"rendered":"<p>Django class based view\ub97c \uc774\uc6a9\ud558\uc5ec \ub3d9\uc77c\ud55c \ud398\uc774\uc9c0\uc5d0 GET \uacfc POST\ub97c \ubaa8\ub450 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95.<\/p>\n<p>1. View \uc791\uc131(app\/views.py)<\/p>\n<pre class=\"lang:sh highlight:0 decode:true \" >class GetPostView(View):\r\n    template_name = 'getpost.html'\r\n    data = [\r\n        {'name': 'fox', 'title': 'test1', 'is_published': True },\r\n        {'name': 'wolf', 'title': 'test 2', 'is_published': False},\r\n        {'name': 'cat', 'title': 'life of cat', 'is_published': True},\r\n    ]\r\n\r\n    def get(self, request, *argc, **kwargs):\r\n        context = {\r\n            'data': self.data,\r\n        }\r\n        return render(request, self.template_name, context)\r\n\r\n    def post(self, request, *argc, **kwargs):\r\n        result = request.POST\r\n        context = {\r\n            'data': self.data,\r\n            'result': result,\r\n        }\r\n        return render(request, self.template_name, context)<\/pre>\n<p><!--more--><\/p>\n<p>2. url \uc791\uc131(app\/urls.py)<\/p>\n<pre class=\"lang:sh highlight:0 decode:true \" >from .views import GetPostView\r\n\r\nurlpatterns = [\r\n    path('getpost\/', GetPostView.as_view(), name='getpost'),\r\n]<\/pre>\n<p>3. template \uc791\uc131(templates\/getpost.html)<\/p>\n<pre class=\"lang:sh highlight:0 decode:true \" >&lt;!DOCTYPE html&gt;\r\n&lt;html lang=\"en\"&gt;\r\n&lt;head&gt;\r\n    &lt;meta charset=\"UTF-8\"&gt;\r\n    &lt;title&gt;GET and POST&lt;\/title&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n&lt;form method=\"POST\" action=\"\"&gt;\r\n    {% csrf_token %}\r\n    {% for i in data %}\r\n    &lt;p&gt;&lt;input type=\"radio\" name=\"name\" value=\"{{i.name}}\"&gt;{{i.name }}&amp;nbsp;&amp;nbsp; | {{i.title}} &amp;nbsp;&amp;nbsp;| {{i.is_published}} &lt;\/p&gt;\r\n    {% endfor %}\r\n\r\n    &lt;p&gt;&lt;input type=\"submit\" value=\"Select\"&gt;&lt;\/p&gt;\r\n\r\n&lt;\/form&gt;\r\n{% if result %}\r\n    {{ result.name }} is selected...\r\n{% endif %}\r\n\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p>\uc774\uc81c, test \uc11c\ubc84\ub97c \uc2e4\ud589\ud558\uace0 \uc811\uc18d\ud574 \ubcf4\uba74(GET) \uc544\ub798\uc640 \uac19\uc740 \ud654\uba74\uc744 \ubcfc \uc218 \uc788\ub2e4.<br \/>\n<a href=\"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/get.png\"><img loading=\"lazy\" decoding=\"async\" data-attachment-id=\"2650\" data-permalink=\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649\/get\" data-orig-file=\"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/get.png\" data-orig-size=\"546,495\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"get\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/get.png\" data-large-file=\"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/get.png\" src=\"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/get.png\" alt=\"\" width=\"546\" height=\"495\" class=\"alignnone size-full wp-image-2650\" \/><\/a><\/p>\n<p>\ub77c\ub514\uc624\ubc84\ud2bc\uc744 \uc120\ud0dd\ud558\uace0 &#8216;Select&#8217; \ubc84\ud2bc\uc744 \ub204\ub974\uba74(POST), \uc120\ud0dd\ud55c \ud56d\ubaa9\uc758 \uac12\uc744 \ubcfc \uc218 \uc788\ub2e4.<br \/>\n<a href=\"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/post.png\"><img loading=\"lazy\" decoding=\"async\" data-attachment-id=\"2651\" data-permalink=\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649\/post\" data-orig-file=\"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/post.png\" data-orig-size=\"550,493\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"post\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/post.png\" data-large-file=\"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/post.png\" src=\"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/post.png\" alt=\"\" width=\"550\" height=\"493\" class=\"alignnone size-full wp-image-2651\" \/><\/a><\/p>\n<p>4. name \uacfc title\uc744 \uac19\uc774 \ud45c\uc2dc\ud558\uace0 \uc2f6\uc73c\uba74 \ud15c\ud50c\ub9bf\uc744 \uc544\ub798\uc640 \uac19\uc774 \uc218\uc815\ud55c\ub2e4.<br \/>\nview\uc758 post \uba54\uc18c\ub4dc\uc5d0\uc11c request.POST \uc758 \uacb0\uacfc\uac00 \ub515\uc154\ub108\ub9ac\ud0c0\uc785\uc744 \uac00\uc9c0\ubbc0\ub85c, \uc544\ub798\uc640 \uac19\uc740 \ud15c\ud50c\ub9bf\uc774 \uac00\ub2a5\ud558\ub2e4.<\/p>\n<pre class=\"lang:sh highlight:0 decode:true \" >&lt;!DOCTYPE html&gt;\r\n&lt;html lang=\"en\"&gt;\r\n&lt;head&gt;\r\n    &lt;meta charset=\"UTF-8\"&gt;\r\n    &lt;title&gt;GET and POST&lt;\/title&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n&lt;form method=\"POST\" action=\"\"&gt;\r\n    {% csrf_token %}\r\n    {% for i in data %}\r\n    &lt;p&gt;&lt;input type=\"radio\" name=\"name\" value=\"{{i.name}}\"&gt;{{i.name }}&amp;nbsp;&amp;nbsp; |\r\n        &lt;input type=\"hidden\" name=\"title\" value=\"{{i.title}}\"&gt;{{i.title}} &amp;nbsp;&amp;nbsp;|\r\n        {{i.is_published}} &lt;\/p&gt;\r\n    {% endfor %}\r\n\r\n    &lt;p&gt;&lt;input type=\"submit\" value=\"Select\"&gt;&lt;\/p&gt;\r\n\r\n&lt;\/form&gt;\r\n{% if result %}\r\n    NAME: {{ result.name }}&lt;br&gt; TITLE: {{result.title}} &lt;br&gt;is selected...\r\n{% endif %}\r\n\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Django class based view\ub97c \uc774\uc6a9\ud558\uc5ec \ub3d9\uc77c\ud55c \ud398\uc774\uc9c0\uc5d0 GET \uacfc POST\ub97c \ubaa8\ub450 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95. 1. View \uc791\uc131(app\/views.py) class GetPostView(View): template_name = &#8216;getpost.html&#8217; data = [ {&#8216;name&#8217;: &#8216;fox&#8217;, &#8216;title&#8217;: &#8216;test1&#8217;, &#8216;is_published&#8217;: True }, {&#8216;name&#8217;: &#8216;wolf&#8217;, &#8216;title&#8217;: &#8216;test 2&#8217;, &#8216;is_published&#8217;: False}, {&#8216;name&#8217;: &#8216;cat&#8217;, &#8216;title&#8217;: &#8216;life of cat&#8217;, &#8216;is_published&#8217;: True}, ] def get(self, request, *argc, **kwargs): context = { &hellip; <\/p>\n<p><a class=\"more-link btn\" href=\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649\">Continue reading<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[491],"tags":[615,616],"class_list":["post-2649","post","type-post","status-publish","format-standard","hentry","category-491","tag-django-cbv-view","tag-django-get-post-same-template","item-wrap"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>[django 2.2] Get\/Post\ub97c \ub3d9\uc77c\ud55c \ud15c\ud50c\ub9bf\uc5d0 \ud45c\uc2dc\ud558\uae30. - Blog-boxcorea<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[django 2.2] Get\/Post\ub97c \ub3d9\uc77c\ud55c \ud15c\ud50c\ub9bf\uc5d0 \ud45c\uc2dc\ud558\uae30. - Blog-boxcorea\" \/>\n<meta property=\"og:description\" content=\"Django class based view\ub97c \uc774\uc6a9\ud558\uc5ec \ub3d9\uc77c\ud55c \ud398\uc774\uc9c0\uc5d0 GET \uacfc POST\ub97c \ubaa8\ub450 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95. 1. View \uc791\uc131(app\/views.py) class GetPostView(View): template_name = &#039;getpost.html&#039; data = [ {&#039;name&#039;: &#039;fox&#039;, &#039;title&#039;: &#039;test1&#039;, &#039;is_published&#039;: True }, {&#039;name&#039;: &#039;wolf&#039;, &#039;title&#039;: &#039;test 2&#039;, &#039;is_published&#039;: False}, {&#039;name&#039;: &#039;cat&#039;, &#039;title&#039;: &#039;life of cat&#039;, &#039;is_published&#039;: True}, ] def get(self, request, *argc, **kwargs): context = { &hellip; Continue reading\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649\" \/>\n<meta property=\"og:site_name\" content=\"Blog-boxcorea\" \/>\n<meta property=\"article:published_time\" content=\"2019-08-08T14:00:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/get.png\" \/>\n\t<meta property=\"og:image:width\" content=\"546\" \/>\n\t<meta property=\"og:image:height\" content=\"495\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"snowffox\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"snowffox\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649#article\",\"isPartOf\":{\"@id\":\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649\"},\"author\":{\"name\":\"snowffox\",\"@id\":\"https:\/\/blog.boxcorea.com\/wp\/#\/schema\/person\/6d8e12df2429d663a0a4e8362fbb650a\"},\"headline\":\"[django 2.2] Get\/Post\ub97c \ub3d9\uc77c\ud55c \ud15c\ud50c\ub9bf\uc5d0 \ud45c\uc2dc\ud558\uae30.\",\"datePublished\":\"2019-08-08T14:00:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649\"},\"wordCount\":31,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/get.png\",\"keywords\":[\"Django CBV View\",\"Django get post same template\"],\"articleSection\":[\"Python\/Django\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649\",\"url\":\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649\",\"name\":\"[django 2.2] Get\/Post\ub97c \ub3d9\uc77c\ud55c \ud15c\ud50c\ub9bf\uc5d0 \ud45c\uc2dc\ud558\uae30. - Blog-boxcorea\",\"isPartOf\":{\"@id\":\"https:\/\/blog.boxcorea.com\/wp\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649#primaryimage\"},\"image\":{\"@id\":\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/get.png\",\"datePublished\":\"2019-08-08T14:00:18+00:00\",\"author\":{\"@id\":\"https:\/\/blog.boxcorea.com\/wp\/#\/schema\/person\/6d8e12df2429d663a0a4e8362fbb650a\"},\"breadcrumb\":{\"@id\":\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649#primaryimage\",\"url\":\"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/get.png\",\"contentUrl\":\"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/get.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blog.boxcorea.com\/wp\/archives\/2649#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blog.boxcorea.com\/wp\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[django 2.2] Get\/Post\ub97c \ub3d9\uc77c\ud55c \ud15c\ud50c\ub9bf\uc5d0 \ud45c\uc2dc\ud558\uae30.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blog.boxcorea.com\/wp\/#website\",\"url\":\"https:\/\/blog.boxcorea.com\/wp\/\",\"name\":\"Blog-boxcorea\",\"description\":\"Simple is Beautiful!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blog.boxcorea.com\/wp\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/blog.boxcorea.com\/wp\/#\/schema\/person\/6d8e12df2429d663a0a4e8362fbb650a\",\"name\":\"snowffox\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/c0787be58ea7e470b1a6f5ea8ce367c7913809648a00e0c15faace5220902ffb?s=96&d=retro&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c0787be58ea7e470b1a6f5ea8ce367c7913809648a00e0c15faace5220902ffb?s=96&d=retro&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c0787be58ea7e470b1a6f5ea8ce367c7913809648a00e0c15faace5220902ffb?s=96&d=retro&r=g\",\"caption\":\"snowffox\"},\"url\":\"https:\/\/blog.boxcorea.com\/wp\/archives\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[django 2.2] Get\/Post\ub97c \ub3d9\uc77c\ud55c \ud15c\ud50c\ub9bf\uc5d0 \ud45c\uc2dc\ud558\uae30. - Blog-boxcorea","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/blog.boxcorea.com\/wp\/archives\/2649","og_locale":"ko_KR","og_type":"article","og_title":"[django 2.2] Get\/Post\ub97c \ub3d9\uc77c\ud55c \ud15c\ud50c\ub9bf\uc5d0 \ud45c\uc2dc\ud558\uae30. - Blog-boxcorea","og_description":"Django class based view\ub97c \uc774\uc6a9\ud558\uc5ec \ub3d9\uc77c\ud55c \ud398\uc774\uc9c0\uc5d0 GET \uacfc POST\ub97c \ubaa8\ub450 \ud45c\uc2dc\ud558\ub294 \ubc29\ubc95. 1. View \uc791\uc131(app\/views.py) class GetPostView(View): template_name = 'getpost.html' data = [ {'name': 'fox', 'title': 'test1', 'is_published': True }, {'name': 'wolf', 'title': 'test 2', 'is_published': False}, {'name': 'cat', 'title': 'life of cat', 'is_published': True}, ] def get(self, request, *argc, **kwargs): context = { &hellip; Continue reading","og_url":"https:\/\/blog.boxcorea.com\/wp\/archives\/2649","og_site_name":"Blog-boxcorea","article_published_time":"2019-08-08T14:00:18+00:00","og_image":[{"width":546,"height":495,"url":"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/get.png","type":"image\/png"}],"author":"snowffox","twitter_card":"summary_large_image","twitter_misc":{"Written by":"snowffox","Est. reading time":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.boxcorea.com\/wp\/archives\/2649#article","isPartOf":{"@id":"https:\/\/blog.boxcorea.com\/wp\/archives\/2649"},"author":{"name":"snowffox","@id":"https:\/\/blog.boxcorea.com\/wp\/#\/schema\/person\/6d8e12df2429d663a0a4e8362fbb650a"},"headline":"[django 2.2] Get\/Post\ub97c \ub3d9\uc77c\ud55c \ud15c\ud50c\ub9bf\uc5d0 \ud45c\uc2dc\ud558\uae30.","datePublished":"2019-08-08T14:00:18+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.boxcorea.com\/wp\/archives\/2649"},"wordCount":31,"commentCount":0,"image":{"@id":"https:\/\/blog.boxcorea.com\/wp\/archives\/2649#primaryimage"},"thumbnailUrl":"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/get.png","keywords":["Django CBV View","Django get post same template"],"articleSection":["Python\/Django"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.boxcorea.com\/wp\/archives\/2649#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.boxcorea.com\/wp\/archives\/2649","url":"https:\/\/blog.boxcorea.com\/wp\/archives\/2649","name":"[django 2.2] Get\/Post\ub97c \ub3d9\uc77c\ud55c \ud15c\ud50c\ub9bf\uc5d0 \ud45c\uc2dc\ud558\uae30. - Blog-boxcorea","isPartOf":{"@id":"https:\/\/blog.boxcorea.com\/wp\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.boxcorea.com\/wp\/archives\/2649#primaryimage"},"image":{"@id":"https:\/\/blog.boxcorea.com\/wp\/archives\/2649#primaryimage"},"thumbnailUrl":"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/get.png","datePublished":"2019-08-08T14:00:18+00:00","author":{"@id":"https:\/\/blog.boxcorea.com\/wp\/#\/schema\/person\/6d8e12df2429d663a0a4e8362fbb650a"},"breadcrumb":{"@id":"https:\/\/blog.boxcorea.com\/wp\/archives\/2649#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.boxcorea.com\/wp\/archives\/2649"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/blog.boxcorea.com\/wp\/archives\/2649#primaryimage","url":"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/get.png","contentUrl":"https:\/\/blog.boxcorea.com\/wp\/wp-content\/uploads\/2019\/08\/get.png"},{"@type":"BreadcrumbList","@id":"https:\/\/blog.boxcorea.com\/wp\/archives\/2649#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blog.boxcorea.com\/wp"},{"@type":"ListItem","position":2,"name":"[django 2.2] Get\/Post\ub97c \ub3d9\uc77c\ud55c \ud15c\ud50c\ub9bf\uc5d0 \ud45c\uc2dc\ud558\uae30."}]},{"@type":"WebSite","@id":"https:\/\/blog.boxcorea.com\/wp\/#website","url":"https:\/\/blog.boxcorea.com\/wp\/","name":"Blog-boxcorea","description":"Simple is Beautiful!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.boxcorea.com\/wp\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/blog.boxcorea.com\/wp\/#\/schema\/person\/6d8e12df2429d663a0a4e8362fbb650a","name":"snowffox","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/secure.gravatar.com\/avatar\/c0787be58ea7e470b1a6f5ea8ce367c7913809648a00e0c15faace5220902ffb?s=96&d=retro&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c0787be58ea7e470b1a6f5ea8ce367c7913809648a00e0c15faace5220902ffb?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c0787be58ea7e470b1a6f5ea8ce367c7913809648a00e0c15faace5220902ffb?s=96&d=retro&r=g","caption":"snowffox"},"url":"https:\/\/blog.boxcorea.com\/wp\/archives\/author\/admin"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p4wGXL-GJ","jetpack_likes_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/blog.boxcorea.com\/wp\/wp-json\/wp\/v2\/posts\/2649","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.boxcorea.com\/wp\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.boxcorea.com\/wp\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.boxcorea.com\/wp\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.boxcorea.com\/wp\/wp-json\/wp\/v2\/comments?post=2649"}],"version-history":[{"count":2,"href":"https:\/\/blog.boxcorea.com\/wp\/wp-json\/wp\/v2\/posts\/2649\/revisions"}],"predecessor-version":[{"id":2653,"href":"https:\/\/blog.boxcorea.com\/wp\/wp-json\/wp\/v2\/posts\/2649\/revisions\/2653"}],"wp:attachment":[{"href":"https:\/\/blog.boxcorea.com\/wp\/wp-json\/wp\/v2\/media?parent=2649"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.boxcorea.com\/wp\/wp-json\/wp\/v2\/categories?post=2649"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.boxcorea.com\/wp\/wp-json\/wp\/v2\/tags?post=2649"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}