" />

飞道的博客

MVC和MVVM的区别

431人阅读  评论(0)

一、MVC

mvc:是一种代码架构设计模式,前端中的mvc最主要的作用就是将视图和数据模型进行分离

(1) 为什么需要 MVC

简单理解:也就是为什么需要将视图和数据模型进行分离


  
  1. <select id= "drinkSelect">
  2. <option value="coffee">coffee</option>
  3. <option value="milk">milk</option>
  4. <option value="juice">juice</option>
  5. </select>
  6. <p id="theColorOfDrink"></p>
  7. <script type="text/javascript">
  8. document. getElementById( 'drinkSelect'). onchange = function( ) {
  9. var color
  10. var colorOfDrink = {
  11. coffee: 'brown',
  12. milk: 'white',
  13. juice: 'orange'
  14. }
  15. color = colorOfDrink[ this. value]
  16. document. getElementById( 'theColorOfDrink'). innerHTML = color
  17. }
  18. </script>

通过上面代码我们会发现视图的操作和数据以及逻辑的处理全部混淆在一起了,当前代码量小,并不会发现太大的问题,但是项目大,代码量多的时候,对于代码的维护会相对复杂,分离后具有如下优势

  • 维护性高 
  • 代码耦合性低 (相互联系较低)
  • 代码可复用

(2)如何设计MVC? 

mvc可以分为三个部分

  • 视图(View):用户界面。
  • 控制器(Controller):业务逻辑
  • 模型(Model):数据保存

V 视图层

页面结构


  
  1. <select id="drinkSelect">
  2. <option value="coffee">coffee </option>
  3. <option value="milk">milk </option>
  4. <option value="juice">juice </option>
  5. </select>
  6. <p id="theColorOfDrink"> </p>

dom 操作


  
  1. showDrinkColor. view = {
  2. start: function( ) {
  3. // 获取select监听change事件
  4. document. getElementById( 'drinkSelect'). onchange = this. onchange
  5. },
  6. onchange: function( ) {
  7. // 事件函数 做的逻辑 获取 变化后的数据传递给controller
  8. showDrinkColor. set( document. getElementById( 'drinkSelect'). value)
  9. },
  10. update: function( ) {
  11. document. getElementById(
  12. 'theColorOfDrink'
  13. ). innerHTML = showDrinkColor. model. getDrinkColor()
  14. }
  15. }

M 数据层

数据和操作数据的逻辑:


  
  1. showDrinkColor. model = {
  2. colorOfDrink: {
  3. coffee: 'brown',
  4. milk: 'white',
  5. juice: 'orange'
  6. },
  7. selectedDrink: null,
  8. setDrink: function( drinkName) {
  9. this. selectedDrink = this. colorOfDrink[ this. selectedDrink]
  10. ? drinkName
  11. : null
  12. this. onchange()
  13. },
  14. onchange: function( ) {
  15. showDrinkColor. view. update()
  16. },
  17. getDrinkColor: function( ) {
  18. return this. selectedDrink
  19. ? this. colorOfDrink[ this. selectedDrink]
  20. : 'white'
  21. }
  22. }

C 控制层

视图和数据模型 进行关联


  
  1. var showDrinkColor = {
  2. start: function( ) {
  3. // 给视图绑定事件
  4. this. view. start()
  5. },
  6. set: function( drinkName) {
  7. // 拿到视图传递过来的数据在调用数据模型的方法更新数据
  8. this. model. setDrink(drinkName)
  9. }
  10. }
  11. showDrinkColor. start()
  1. 视图发生变化触发 Controller,并且将数据传递给 Controller
  2. Controller 拿到更新的数据触发 model 并将更新的数据传递给 model
  3. model 拿到数据更新数据并且触发 view 视图更新

mvc通信方式流程

所有通信都是单向的。 

为了小伙伴们方便复制查看 合一个完整的


  
  1. <! DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Document </title>
  8. </head>
  9. <body>
  10. mvc写法
  11. <select id="drinkSelect">
  12. <option value="coffee">coffee </option>
  13. <option value="milk">milk </option>
  14. <option value="juice">juice </option>
  15. </select>
  16. <p id="theColorOfDrink"> </p>
  17. <script>
  18. var showDrinkColor = {
  19. start: function ( ) {
  20. // 给视图绑定事件
  21. this. view. start();
  22. },
  23. set: function ( drinkName) {
  24. // 拿到视图传递过来的数据在调用数据模型的方法更新数据
  25. this. model. setDrink(drinkName);
  26. },
  27. };
  28. showDrinkColor. view = {
  29. start: function ( ) {
  30. console. log( '监听了');
  31. // 获取select监听change事件
  32. document. getElementById( "drinkSelect"). onchange = this. onchange;
  33. },
  34. onchange: function ( ) {
  35. // 事件函数 做的逻辑 获取 变化后的数据传递给controller
  36. showDrinkColor. set( document. getElementById( "drinkSelect"). value);
  37. },
  38. update: function ( ) {
  39. document. getElementById( "theColorOfDrink"). innerHTML =
  40. showDrinkColor. model. getDrinkColor();
  41. },
  42. };
  43. showDrinkColor. model = {
  44. colorOfDrink: {
  45. coffee: "brown",
  46. milk: "white",
  47. juice: "orange",
  48. },
  49. selectedDrink: null,
  50. setDrink: function ( drinkName) {
  51. this. selectedDrink = this. colorOfDrink[ this. selectedDrink]
  52. ? drinkName
  53. : null;
  54. this. onchange();
  55. },
  56. onchange: function ( ) {
  57. showDrinkColor. view. update();
  58. },
  59. getDrinkColor: function ( ) {
  60. return this. selectedDrink
  61. ? this. colorOfDrink[ this. selectedDrink]
  62. : "white";
  63. },
  64. };
  65. showDrinkColor. start();
  66. </script>
  67. </body>
  68. </html>

 二、MVVM

MVVM 是 Model-View-ViewModel 的简写。它本质上就是 MVC 的改进版,整体和 mvc 差不多,最大的区别就是mvc 是单向的,而 mvvm 是双向的,并且是自动的,也就是数据发生变化自动同步视图,视图发生变化自动同步数据,同时解决了 mvc 中大量的 DOM 操作使页面渲染性能降低,加载速度变慢,影响用户体验。和当 Model 频繁发生变化,开发者需要主动更新到 View

    耦合低,是真的低,view 和 model 完全分离

    维护性高,易维护,上手快

    双向绑定:视图发生变化数据自动同步,数据发生变化视图也自动同步

    减少了 dom 的操作,可以更多的关注业务逻辑


转载:https://blog.csdn.net/m0_46846526/article/details/128777415
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场