1
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フレームワークについて】

1
Posted at

MVCモデルとは

世の中の多数のプログラミング言語で使用されている考え方。

アプリケーションを「Model」「Controller」「View」の3つに分割して実装を行う。

Model

アプリケーションのロジック部分を担う。

ロジックとは... データベースとの連携部分の処理のこと

View

データを表示する部分のこと。
(ユーザが閲覧している画面の部分)

主にHTMLで構成されることが多い。

Controller

Model からViewにデータを橋渡しする役割を担う。

1
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
1
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?