0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MVCとは?

Posted at

モデル

データとデータに関わるビジネルロジック(アプリケーション特有の処理)をオブジェクトとして実装したもの

ビュー

ブラウザに表示する画面、HTMLなどのHTTPレスポンスの中身を組み立てる部分。
必要に応じてコントローラからモデルのオブジェクトを受け取り、画面表示に利用する

コントローラ

ユーザが操作するブラウザなどのクライアントからの入力を受け、適切な出力を作成するための制御を行う部分。必要に応じてモデルを利用したり、ビューを呼び出したりして、レスポンスを作り上げます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?