{"title":"用語集","version":"1.9","locale":"ja","docname":"glossary","url":"/ja/1.9/glossary/","canonical":"https://djangodocs.dev/ja/1.9/glossary/","summary":"具体的なモデル (concrete model) Link to this term # 抽象モデルでないモデル ( abstract=False ) のこと。 フィールド (field) Link to this term # model…","html":"<h1>用語集<a class=\"heading-anchor\" href=\"#glossary\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h1>\n<dl class=\"glossary\">\n<dt id=\"term-concrete-model\">具体的なモデル (concrete model)<a class=\"heading-anchor\" href=\"#term-concrete-model\"><span class=\"visually-hidden\">Link to this term</span><span aria-hidden=\"true\">#</span></a></dt><dd><p>抽象モデルでないモデル (<a class=\"reference internal\" href=\"/ja/1.9/ref/models/options/#django.db.models.Options.abstract\" title=\"django.db.models.Options.abstract\"><code class=\"xref py py-attr docutils literal notranslate\"><span class=\"pre\">abstract=False</span></code></a>) のこと。</p>\n</dd>\n<dt id=\"term-field\">フィールド (field)<a class=\"heading-anchor\" href=\"#term-field\"><span class=\"visually-hidden\">Link to this term</span><span aria-hidden=\"true\">#</span></a></dt><dd><p><a class=\"reference internal\" href=\"#term-model\"><span class=\"xref std std-term\">model</span></a> の属性の1つで、与えられたフィールドはふつう、1つのデータベースのカラムと1対1に対応する。</p>\n<p>詳しくは <a class=\"reference internal\" href=\"/ja/1.9/topics/db/models/\"><span class=\"doc\">Models</span></a> を参照。</p>\n</dd>\n<dt id=\"term-generic-view\">ジェネリックビュー (generic view)<a class=\"heading-anchor\" href=\"#term-generic-view\"><span class=\"visually-hidden\">Link to this term</span><span aria-hidden=\"true\">#</span></a></dt><dd><p>高階な <a class=\"reference internal\" href=\"#term-view\"><span class=\"xref std std-term\">view</span></a> 関数で、ビューの開発でよくあるイディオムやパターンに抽象的・一般的な実装を与える関数のこと。</p>\n<p>詳しくは <a class=\"reference internal\" href=\"/ja/1.9/topics/class-based-views/\"><span class=\"doc\">Class-based views</span></a> を参照。</p>\n</dd>\n<dt id=\"term-model\">モデル<a class=\"heading-anchor\" href=\"#term-model\"><span class=\"visually-hidden\">Link to this term</span><span aria-hidden=\"true\">#</span></a></dt><dd><p>アプリケーションのデータを保存するもの。</p>\n<p>詳しくは <a class=\"reference internal\" href=\"/ja/1.9/topics/db/models/\"><span class=\"doc\">Models</span></a> を参照。</p>\n</dd>\n<dt id=\"term-MTV\">MTV<a class=\"heading-anchor\" href=\"#term-MTV\"><span class=\"visually-hidden\">Link to this term</span><span aria-hidden=\"true\">#</span></a></dt><dd><p>モデル・テンプレート・ビュー (&quot;Model-template-view&quot;) はソフトウェアのパタンの一つ。スタイルは MVC に似ているが、Django のやり方をより上手く表現している。</p>\n<p>詳しくは <a class=\"reference internal\" href=\"/ja/1.9/faq/general/#faq-mtv\"><span class=\"std std-ref\">FAQ</span></a> を参照。</p>\n</dd>\n<dt id=\"term-MVC\">MVC<a class=\"heading-anchor\" href=\"#term-MVC\"><span class=\"visually-hidden\">Link to this term</span><span aria-hidden=\"true\">#</span></a></dt><dd><p><a class=\"reference external\" href=\"https://en.wikipedia.org/wiki/Model-view-controller\">Model-view-controller</a> はソフトウェアのパタンの一つ。Django は :ref:` ある意味では MVC に従っている &lt;faq-mtv&gt;`。</p>\n</dd>\n<dt id=\"term-project\">プロジェクト (project)<a class=\"heading-anchor\" href=\"#term-project\"><span class=\"visually-hidden\">Link to this term</span><span aria-hidden=\"true\">#</span></a></dt><dd><p>A Python package -- i.e. a directory of code -- that contains all the\nsettings for an instance of Django. This would include database\nconfiguration, Django-specific options and application-specific\nsettings.</p>\n</dd>\n<dt id=\"term-property\">属性 (property)<a class=\"heading-anchor\" href=\"#term-property\"><span class=\"visually-hidden\">Link to this term</span><span aria-hidden=\"true\">#</span></a></dt><dd><p>Also known as &quot;managed attributes&quot;, and a feature of Python since\nversion 2.2. This is a neat way to implement attributes whose usage\nresembles attribute access, but whose implementation uses method calls.</p>\n<p>詳しくは <a class=\"reference external\" href=\"https://docs.python.org/3/library/functions.html#property\" title=\"(in Python v3.14)\"><code class=\"xref py py-class docutils literal notranslate\"><span class=\"pre\">property</span></code></a> を参照。</p>\n</dd>\n<dt id=\"term-queryset\">クエリセット (queryset)<a class=\"heading-anchor\" href=\"#term-queryset\"><span class=\"visually-hidden\">Link to this term</span><span aria-hidden=\"true\">#</span></a></dt><dd><p>データベースから取得したいくつかの行の集まりを表すオブジェクトのこと。</p>\n<p>詳しくは <a class=\"reference internal\" href=\"/ja/1.9/topics/db/queries/\"><span class=\"doc\">Making queries</span></a> を参照。</p>\n</dd>\n<dt id=\"term-slug\">スラグ (slug)<a class=\"heading-anchor\" href=\"#term-slug\"><span class=\"visually-hidden\">Link to this term</span><span aria-hidden=\"true\">#</span></a></dt><dd><p>ある要素に対して付けられた短いラベルで、英語のアルファベット、数字、アンダーバー、ハイフンからなり、ふつうは URL に使われる。例示すると、次のようなよくあるブログエントリの URL では、</p>\n<pre class=\"literal-block\"><a class=\"reference external\" href=\"https://www.djangoproject.com/weblog/2008/apr/12/\">https://www.djangoproject.com/weblog/2008/apr/12/</a><strong>spring</strong>/</pre>\n<p>最後にある文字列 (<code class=\"docutils literal notranslate\"><span class=\"pre\">spring</span></code>) がスラグである。</p>\n</dd>\n<dt id=\"term-template\">テンプレート (template)<a class=\"heading-anchor\" href=\"#term-template\"><span class=\"visually-hidden\">Link to this term</span><span aria-hidden=\"true\">#</span></a></dt><dd><p>データの表示の仕方としてのフォーマットを定める役割を持つテキストのこと。テンプレートを利用することで、データそれ自体から、データの表示の仕方を切り離すことができる。</p>\n<p>詳しくは <a class=\"reference internal\" href=\"/ja/1.9/topics/templates/\"><span class=\"doc\">Templates</span></a> を参照。</p>\n</dd>\n<dt id=\"term-view\">ビュー (view)<a class=\"heading-anchor\" href=\"#term-view\"><span class=\"visually-hidden\">Link to this term</span><span aria-hidden=\"true\">#</span></a></dt><dd><p>ページのレンダリングを担当する関数。</p>\n</dd>\n</dl>","rootId":"glossary","toc":[],"breadcrumbs":[],"prev":{"docname":"misc/distributions","title":"Third-party distributions of Django","url":"/ja/1.9/misc/distributions/"},"next":{"docname":"releases/index","title":"Release notes","url":"/ja/1.9/releases/"},"formats":{"html":"/ja/1.9/glossary/","markdown":"/ja/1.9/glossary.md","json":"/ja/1.9/glossary.json"},"source":"https://github.com/django/django/blob/stable/1.9.x/docs/glossary.txt","official":"https://docs.djangoproject.com/ja/1.9/glossary/","inVersions":["6.1","6.0","5.2","5.1","5.0","4.2","4.1","4.0","3.2","3.1","3.0","2.2","2.1","2.0","1.11","1.10","1.9"],"inLocales":["en","fr","ja","id","pt-br","es"]}