`
oywl2008
  • 浏览: 1050680 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

The MVC and MVVM Patterns

 
阅读更多

Single-Page Applications (SPAs) are Web apps that load a single HTML page and dynamically update that page as the user interacts with the app.

SPAs use AJAX and HTML5 to create fluid and responsive Web apps, without constant page reloads. However, this means much of the work happens on the client side, in JavaScript. For the traditional ASP.NET developer, it can be difficult to make the leap. Luckily, there are many open source JavaScript frameworks that make it easier to create SPAs.

 

In this article, I’ll walk through creating a simple SPA app. Along the way, I’ll introduce some fundamental concepts for building SPAs, including the Model-View-Controller (MVC) and Model-View-ViewModel (MVVM) patterns, data binding and routing.

 

The sample app I created is a simple movie database, shown in Figure 1. The far-left column of the page displays a list of genres. Clicking on a genre brings up a list of movies within that genre. Clicking the Edit button next to an entry lets you change that entry. After making edits, you can click Save to submit the update to the server, or Cancel to revert the changes.

 

 

The MVC and MVVM Patterns

The MVC pattern dates back to the 1980s and early graphical UIs. The goal of MVC is to factor the code into three separate responsibilities, shown in Figure 7. Here’s what they do:

  • The model represents the domain data and business logic.
  • The view displays the model.
  • The controller receives user input and updates the model.

 

 

A more recent variant of MVC is the MVVM pattern (see Figure 8). In MVVM:

  • The model still represents the domain data.
  • The view model is an abstract representation of the view.
  • The view displays the view model and sends user input to the view model.

 

https://msdn.microsoft.com/en-us/magazine/dn463786.aspx

 

 

 

分享到:
评论

相关推荐

    WPF and Silverlight MVVM

    it compared to other patterns such MVP and MVC. In Chapter 1, WPF and Silverlight will be explored in some detail and their respective features highlighted. Chapter 2introduces the foundation of ...

    浅谈JavaScript前端开发的MVC结构与MVVM结构

    MVC模式最早由Trygve Reenskaug在Smalltalk-80中提出,后来在《Design Patterns: Elements of Reusable Object-Oriented Software》一书中被广泛推广。MVC将应用分为三个主要部分:Model、View和Controller。 1. ...

    Learning JavaScript Design Patterns - Addy Osmani.pdf

    Learn how modern architectural patterns—such as MVC, MVP, and MVVM—are useful from the perspective of a modern web application developer. This book also walks experienced JavaScript developers ...

    Android Design Patterns and Best Practice

    本资源包“Android Design Patterns and Best Practice”包含了多种格式的书籍(PDF、EPUB、MOBI)以及可能的源代码示例,旨在帮助开发者深入理解Android平台上的设计原则与实践。 首先,我们要了解设计模式的重要...

    Patterns - WPF Apps With The Model-View-ViewModel Design Pattern

    本篇文章探讨了在Windows Presentation Foundation (WPF)框架下应用模型-视图-视图模型(Model-View-ViewModel,简称MVVM)设计模式的方法。MVVM是一种软件架构模式,它旨在简化用户界面的开发过程,并提高代码的可...

    App Architecture: iOS Application Design Patterns in Swift 中文版

    《App Architecture: iOS Application Design Patterns in Swift 中文版》这本书聚焦于iOS应用程序的架构设计,即如何将较小的部分组合成一个完整的应用。在本书中,作者们探讨了多种设计模式,旨在帮助开发者更好地...

    Packt.Applied.Architecture.Patterns.on.the.Microsoft.Platform

    - **传统架构模式**:如MVC(模型-视图-控制器)、MVVM(模型-视图-视图模型)等。 - **现代架构模式**:随着云计算的发展,出现了一些新的架构模式,如Serverless(无服务器架构)、Event Sourcing(事件溯源)等。...

    Android.Design.Patterns

    7. **MVVM(Model-View-ViewModel)**:随着Jetpack库的推广,MVVM成为现代Android开发的首选模式。书里会讲解如何利用LiveData、ViewModel等组件实现数据绑定和状态管理。 8. **依赖注入**:如Dagger或Hilt,这些...

    iOSDesignPatternSamples:这是Github用户搜索演示应用程序,由多种设计模式制作而成。 您可以比较MVC,MVP,MVVM和Flux的差异

    iOSDesignPatternSamples 这是由许多设计模式制作的Github用户搜索演示应用程序。 应用结构 SearchViewController ...... UserRepositoryViewController ...... RepositoryViewController ...... 此外,添加/删除内存中...

    麦哲伦:由MVC驱动的WPF导航框架

    **MVC和MVVM模式** 在软件开发中扮演着核心角色。MVC(Model-View-Controller)模式是一种经典的设计模式,用于将业务逻辑(模型)、用户界面(视图)和应用程序控制(控制器)分离。而MVVM是针对WPF和Silverlight等...

    android-patterns-master.zip

    6. **MVC、MVP、MVVM模式**:这三种是Android中常见的架构模式。MVC(模型-视图-控制器)将业务逻辑、用户界面和数据分离;MVP(模型-视图- presenter)强调presenter作为视图和模型之间的桥梁;MVVM(模型-视图-...

    精通ASP.NET设计模式

    第二部分“The Anatomy of an ASP.NET Application: Learning and Applying Patterns”聚焦于ASP.NET应用程序的架构,并展示了如何在实际项目中应用设计模式。以下是各章节的核心内容: #### 第3章:层化你的应用,...

    App Architecture iOS Application Design Patterns in Swift

    - MVC+ViewState模式是在传统的MVC基础上增加了状态管理的概念。 - **ViewState**:用于存储视图的状态,这样即使视图重新加载时也可以保持之前的状态。 - 这种模式适用于需要持久化视图状态的应用场景。 **Model ...

    Ray Wenderlich Design Patterns source code

    在iOS开发中,MVVM逐渐替代MVC,成为推荐的开发模式。 6. **策略模式(Strategy Pattern)**(05-strategy-pattern) 策略模式定义了一系列算法,并将每个算法封装起来,使它们可以相互替换。这使得算法的变化不会...

    Android-Design-Patterns:常见的设计模式 Android 中的独特模式

    MVC模式 列表活动 MVVM 模式 外观图案 安卓媒体框架 桥接模式 适配器视图/适配器 工厂方法 模板模式 装饰模式 单例模式 输入法管理器 Android 中的独特模式: 名称 类型 用 关联 高级链接 视图持有人模式 布局性能 ...

    2015-04各大公司ios面试题

    10. **设计模式(Design Patterns)**:如MVC、MVVM、VIPER等,考察对软件设计原则的理解和应用。 每个文件名以.png结尾,很可能是一些题目截图或者示例图,具体问题可能需要结合图片内容来解答。对于面试准备,...

    ASP.NET设计模式 英文清晰版 pdf

    2. **MVVM(Model-View-ViewModel)模式**:在ASP.NET Core中,特别是与Blazor应用相关时,MVVM模式变得重要。ViewModel作为模型和视图之间的桥梁,负责处理业务逻辑和视图间的交互。 3. **工厂模式**:用于创建...

    SwiftUI架构:在聊天应用程序示例中实现的三种不同的架构(Model-View,Redux,MVVM)用于使用SwiftUI

    本话题将深入探讨如何在SwiftUI聊天应用示例中实现三种常见的软件架构模式:Model-View(MVC的变体)、Redux以及Model-View-ViewModel(MVVM)。每种架构都有其独特的优点和适用场景,理解并熟练运用这些架构可以...

Global site tag (gtag.js) - Google Analytics