zoukankan      html  css  js  c++  java
  • JavaScript Patterns 5.2 Declaring Dependencies

    It’s a good idea to declare the modules your code relies on at the top of your function or module. The declaration involves creating only a local variable and pointing to the desired module.

    var myFunction = function() {
    
        // dependencies
    
        var event = YAHOO.util.Event, 
    dom = YAHOO.util.Dom; // use event and dom variables // for the rest of the function... };

    Benefits

    • Explicit declaration of dependencies signals to the users of your code the specific script files that they need to make sure are included in the page.

    • Upfront declaration at the top of the function makes it easy to find and resolve dependencies.

    • Working with a local variable (such as dom) is always faster than working with a global (such as  YAHOO) and even faster than working with nested properties of a global variable (such as  YAHOO.util.Dom), resulting in better performance. When following  this  dependency  declaration  pattern,  the  global  symbol  resolution  is performed only once in the function. After that the local variable is used, which is much faster.

    • Advanced minification tools such as YUICompressor and Google Closure compiler will rename local variables (so event will likely become just one character such as A), resulting in smaller code, but never global variables, because it’s not safe to do so.

     References: 

    JavaScript Patterns - by Stoyan Stefanov (O`Reilly)

  • 相关阅读:
    刚刚学习Silverlight
    给文本框添加水印效果
    .net 下实现下载
    UpdatePanel中弹出对话框
    用VS.NET开发在Linux Apache Tomcat上运行的应用
    玩儿条形码之条码生成
    关于ContextSwitchDeadlock
    第一个Grasshoper应用
    WebService实现Ajax
    使用decorator的线程同步
  • 原文地址:https://www.cnblogs.com/haokaibo/p/Declaring-Dependencies.html
Copyright © 2011-2022 走看看