Skip to content

Commit

Permalink
Merge pull request #7864 from Tatsurou-Yajima/fix/articles-controller…
Browse files Browse the repository at this point in the history
….rst-4.x

[4.x] Fix typo in controller.rst (ja)
  • Loading branch information
markstory authored Jun 7, 2024
2 parents a5f1a33 + c2899ba commit ce228ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ja/tutorials-and-examples/cms/articles-controller.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ CMS チュートリアル - Articles コントローラーの作成
コントローラーのメソッドです。例えば、ユーザーが **www.example.com/articles/index**
(**www.example.com/articles** と同じ) をリクエストした場合、CakePHP は、
``ArticlesController`` の ``index`` メソッドを呼びます。このメソッドは、モデル層に問い合わせ、
ビューでテンプレートを描画してレスポンスの準備する必要があります。そのアクションのコードは、
ビューでテンプレートを描画してレスポンスを準備する必要があります。そのアクションのコードは、
次のようになります。 ::

<?php
Expand All @@ -38,9 +38,9 @@ CMS チュートリアル - Articles コントローラーの作成
}
}

``ArticlesController`` の ``index()`` 関数を定義することで、ユーザーは、
``ArticlesController`` の ``index()`` メソッドを定義することで、ユーザーは、
**www.example.com/articles/index** をリクエストすることで、そこにあるロジックに
アクセスできるようになります。同様に、 ``foobar()`` という関数を定義した場合
アクセスできるようになります。同様に、 ``foobar()`` というメソッドを定義した場合
ユーザーはそのメソッドに **www.example.com/articles/foobar** で、アクセスできます。
特定の URL を取得できるように、コントローラーとアクションの名前を付けたいという
誘惑に駆られるかもしれません。その誘惑に抗ってください。代わりに、 :doc:`/intro/conventions`
Expand Down

0 comments on commit ce228ea

Please sign in to comment.