0
我真的很困惑MVC架構和數據的模型。我知道數據庫是存儲數據。請回答以下問題 Q1)請在下面的代碼中告訴我是Model和什麼是視圖? Q2)當數據/數據庫變成模型時?MVC模型,數據和數據庫有什麼區別?
<!DOCTYPE html>
<html>
<body>
<p>Is this line is a model or a view or data?</p>
<p>In my opinion this button is a controller that shows
"Hello world" as a view. Am i right?</p> <button onclick="myFunction()">Click me</button>
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "Hello World";
}
</script>
</body>
</html>
請在Web應用程序的上下文中解釋。