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)

  • 相关阅读:
    Winform 积累
    mvc部署iis遇到的问题总结
    开始我的BLOG生活
    sql 总结
    ajax:AutoCompleteExtender版本问题
    ancms即将上线
    ancms v2.3语言介绍
    asp.net的cms 核心代码篇
    div+css布局
    js词法结构
  • 原文地址:https://www.cnblogs.com/haokaibo/p/Declaring-Dependencies.html
Copyright © 2011-2022 走看看