zoukankan      html  css  js  c++  java
  • This is jqMVC# Definition & Summary

    Before discussing more, please realize what I’m talking about is not “theoretical research”, but “real successful practice”.

    Definition

    I created the word – “jqMVC#”, which means bunch of things:

    • “j”  means it is about JavaScript;
    • “q” means it is about jQuery & jQuery plugins;
    • “MVC” means it is about MVC pattern;
    • “#” means it is about C#;
    • “j”+”#” means it is about Script#;

    Another thing which is not directly represented by the word but implied is TDD in JavaScript but whose code is written in C#.

    When all these things come together, it is jqMVC# – a new practical architecture which makes enterprise-level HTML & JavaScript only rich UI development in B/S-architecture application become not only possible, but also as a representative of HTML5 with which we could really say ‘Good bye!’ to Flash & Silverlight even now for most cross-browser web applications which do not really require those complex animation effects.

    Summary

    In this summary, I’m trying to talk a little bit more for each of the items I mentioned in previous section to make this architecture look more conceivable.

    Firstly, our JavaScript code is written in C# with the help of Script#. Script# could compile C# source code to JavaScript automatically. The biggest benefit here is, even a junior developer who is familiar with C# but only know a little of JavaScript could write huge OO JavaScript code efficiently.

    Secondly, the M, V, C classes implementing the MVC pattern in client-side JavaScript are written in C# and are compiled into JavaScript through Script# automatically.

    Why MVC?

    Two main benefits:

    1. Separations of data, controlling and presentation;

    2. Easier for unit testing;

    In JavaScript, when we implementing MVC pattern,

    • Models are JSON comes from server-side services through AJAX and JSONP communication, which should be under TDD in server-side coding;
    • Controllers are Script# classes focus on the controlling of Models and Views, which should be under TDD in Script# coding;
    • Views are as connectors between pure HTML & JavaScript code and Script# based Models & Controllers code, which should also be under TDD in Script# coding;

    Thirdly, jQuery & jQuery plugins are wrapped by Script# together with the Script# predefined libraries as the main tool libraries for client side UI rendering & controlling. Especially, jTemplate is used as the main HTML rendering engine. QUnit is also wrapped by Script# and used as the client-side testing library to implement client-side regression testing which is the core of client-side TDD.

    To be continued…

    In next post, I’m going to give a simple but runnable example to demonstrate the benefits of applying jqMVC# architecture.

  • 相关阅读:
    数据库简介
    计算机网络OSI七层协议
    信息论知识点(绪论)
    Wireshark抓取HTTP数据包
    配置FileZilla FTP服务器
    Redis集群搭建的几种方式
    Redis单个分片高可用&哨兵集群
    Redis哈希一致性&对应API操作
    MapReduce实现好友推荐
    window下使用IDEA远程调试伪分布式hadoop集群
  • 原文地址:https://www.cnblogs.com/teddyma/p/1761122.html
Copyright © 2011-2022 走看看