search
HomeWeb Front-endJS TutorialAdvantages and disadvantages of the three MVVM frameworks: vue, angular, and avalon_Others

The main content of this article is summarized by referring to the official documentation:

Vue.js

Vue.js @You Yuxi is a library for creating web interactive interfaces. It is a streamlined MVVM. From a technical perspective, Vue.js focuses on the ViewModel layer of MVVM models. It connects the View layer and the Model layer through two-way data binding. The actual DOM encapsulation and output format are abstracted into Directives and Filters. Compared with other libraries, Vue.js is a small but beautiful library. The author's main purpose is to produce reflective data binding and composable view components through an API as simple as possible. I feel that the author's ideas are very clear.

Advantages:

Simple: The official documentation is very clear and easier to learn than Angular.
Fast: Update DOM in asynchronous batch mode.
Composition: Compose your application with decoupled, reusable components.
Compact: ~18kb min+gzip, and no dependencies.
Powerful: Expressions & computed properties without declaring dependencies.
Module-friendly: It can be installed through NPM, Bower or Duo. It does not force all your code to follow Angular's various regulations, and the usage scenarios are more flexible.

Disadvantages:

Newborn: Vue.js is a new project, version 0.10.0 Release Candidate released on March 20, 2014. The latest version on github is version 0.11.4, which is not as mature as angular.
The impact is not very big: I googled it and found that the diversity or richness of Vue.js is less than that of some other well-known libraries.
Doesn’t support IE8: Haha, but AngularJS 1.3 also abandoned support for IE8, but teacher @ Stu Zhengmei’s avalon supports IE6+, so a lot of efforts should be made to optimize it. This is not good for projects that need to support IE8, but this is also a trend in web front-end development. Lower versions of IE should withdraw from the stage of history. By changing our front-end thinking, rather than conforming to those who use older versions People who don’t upgrade. Teacher @玉博 said something, and I think it is very good. "These days, supporting IE6 and 7 is no longer a feature, but a shame. We are working hard to promote Alipay to not support IE6 and 7. We look forward to more brothers joining us." ".

AngularJS

AngularJS is very popular recently and has many followers. Superheroic JavaScript MVW Framework
The official statement is very simple: "Client-side technology written entirely in JavaScript. Used in conjunction with other long-established Web technologies (HTML, CSS and JavaScript) to make Web application development simpler and faster than ever." When you learn it, I believe you will be attracted by its many new special effects.

Advantages:

Dynamic view: I have never thought that js can extend the attributes of HTML in this way, but AngularJs has done it. It adds a lot of extensibility functions to our static HTML, and it feels like making HTML come alive.
Perfect: It is a relatively complete front-end MVW framework, including templates, two-way data binding, routing, modularization, services, dependency injection and other functions. The templates are powerful and rich, declarative, and come with a wealth of Angular instructions. .
Google maintenance: AngularJS is maintained by Google. It undoubtedly has a powerful backend. It has obvious advantages over Vue.js and avalon in terms of promotion and maintenance. The community is also very active and can promote its development well.
AngularJS & Ionic: Ionic: Advanced HTML5 Hybrid Mobile App Framework, these two are good friends. Ionic uses AngularJS to create a framework that is best suited for developing rich and powerful applications. Last time, Yu Zhihu answered a related question about webapp development. Which framework and packaged app platform have the best performance and efficiency? - Tang Wei's answer, details can be found here.

Disadvantages:

Large and comprehensive: It is difficult to learn. For me, the learning curve is very tortuous and difficult to understand.
Overturn and rewrite: Some time ago, I visited the community and found that AngularJS 2.0 will overturn and rewrite the previous ones. The two frameworks have changed a lot. They are basically two frameworks. This means that you need to start from scratch after 2.0 comes out, but I also said Come back, /article/79637.htmThis article explains the changes in AngularJS2.0 very well.
It does not support IE8 or below. It seems that 2.0 only supports mobile terminals. Let’s wait until it is released.

Avalon.js

Avalon.js is a simple and easy-to-use mini MVVM framework written by @ Stu Zhengmei. It was first released on September 15, 2012. It was developed to solve the problem of various view presentations for the same business logic. You can often see teachers promoting his Avalon.js and publishing many tutorials, which undoubtedly provides great convenience to people in China learning Avalon.js.

Advantages

Easy to use, add binding in HTML, define ViewModel with avalon.define in JS, then call avalon.scan method, and it will move!
Compatible with IE6 (other MVVM frameworks, KnockoutJS(IE6), AngularJS(IE9), EmberJS(IE8), WinJS(IE9)), and avalon.mobile, which can run more efficiently in newer versions of browsers such as IE10
No dependencies, less than 5000 lines, less than 50KiB after compression
Supports pipe character style filter functions to facilitate formatted output
The granularity of local refresh has been refined to a text node, feature node
The node to be operated is bound to the view refresh function in the first scan and cached, so there is no room for the selector to appear.
Make DOM manipulation code almost extinct
Use a CSS-like overlapping coverage mechanism to allow each ViewModel partition to render the page alternately
When a node is removed, the corresponding view refresh function is intelligently unloaded to save memory
Operating data means operating DOM, and operations on ViewModel will be synchronized to View and Model
Comes with AMD module loader, eliminating the need to integrate with other loaders.

Disadvantages

1. Array filtering is not as comprehensive as angular. Avalon’s filter can only be used for ms-text, ms-html

2. There is no English document and publicity is restricted

3. OniUI’s skin is not good-looking enough. Many people say that they need to cooperate with boostrap, but no one in the community has taken the initiative to do this

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Vue常见面试题汇总(附答案解析)Vue常见面试题汇总(附答案解析)Apr 08, 2021 pm 07:54 PM

本篇文章给大家分享一些Vue面试题(附答案解析)。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

5 款适合国内使用的 Vue 移动端 UI 组件库5 款适合国内使用的 Vue 移动端 UI 组件库May 05, 2022 pm 09:11 PM

本篇文章给大家分享5 款适合国内使用的 Vue 移动端 UI 组件库,希望对大家有所帮助!

vue中props可以传递函数吗vue中props可以传递函数吗Jun 16, 2022 am 10:39 AM

vue中props可以传递函数;vue中可以将字符串、数组、数字和对象作为props传递,props主要用于组件的传值,目的为了接收外面传过来的数据,语法为“export default {methods: {myFunction() {// ...}}};”。

手把手带你利用vue3.x绘制流程图手把手带你利用vue3.x绘制流程图Jun 08, 2022 am 11:57 AM

利用vue3.x怎么绘制流程图?下面本篇文章给大家分享基于 vue3.x 的流程图绘制方法,希望对大家有所帮助!

聊聊vue指令中的修饰符,常用事件修饰符总结聊聊vue指令中的修饰符,常用事件修饰符总结May 09, 2022 am 11:07 AM

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何覆盖组件库样式?React和Vue项目的解决方法浅析如何覆盖组件库样式?React和Vue项目的解决方法浅析May 16, 2022 am 11:15 AM

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!

通过9个Vue3 组件库,看看聊前端的流行趋势!通过9个Vue3 组件库,看看聊前端的流行趋势!May 07, 2022 am 11:31 AM

本篇文章给大家分享9个开源的 Vue3 组件库,通过它们聊聊发现的前端的流行趋势,希望对大家有所帮助!

react与vue的虚拟dom有什么区别react与vue的虚拟dom有什么区别Apr 22, 2022 am 11:11 AM

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment