• 使用SeaJS,require加载Jquery的时候总是为null


    这个问题困扰了我两天,使用别人的例子、官网down下来的example都没有问题。但是放到自己项目里就 var $=require("jquery") 为null。

    后来发现,jquery本来没有amd规范的,于是从官网上的example下来里面的jquery拿过来直接用,最注意的是,在jquery里面增加了有define这段,里面有一个路径要根据自己实际项目路径进行调整

    if ( typeof module === "object" && module && typeof module.exports === "object" ) {
    	// Expose jQuery as module.exports in loaders that implement the Node
    	// module pattern (including browserify). Do not create the global, since
    	// the user will be storing it themselves locally, and globals are frowned
    	// upon in the Node module world.
    	module.exports = jQuery;
    } else {
    	// Otherwise expose jQuery to the global object as usual
    	window.jQuery = window.$ = jQuery;
    
    	// Register as a named AMD module, since jQuery can be concatenated with other
    	// files that may use define, but not via a proper concatenation script that
    	// understands anonymous AMD modules. A named AMD is safest and most robust
    	// way to register. Lowercase jquery is used because AMD module names are
    	// derived from file names, and jQuery is normally delivered in a lowercase
    	// file name. Do this after creating the global so that if an AMD module wants
    	// to call noConflict to hide this version of jQuery, it will work.
    	if ( typeof define === "function" ) {
    		define("lib/jquery/jquery/1.10.1/jquery-debug",[], function () { return jQuery; } );
    	}
    }
    

      原文:http://blog.csdn.net/adeyi/article/details/18003043

  • 相关阅读:
    Python基础23_os,sys,序列化,pickle,json
    Python基础22_模块,collections,time,random,functools
    Python基础21_类与类型, MRO, C3算法, super()
    Python基础20_类的约束,异常处理,MD5加密,日志
    python反射机制
    python 依赖关系 与关联关系
    python 类的常见的特殊成员
    类的成员(*变量与*方法)
    初识面向对象
    简说匿名函数与递归
  • 原文地址:https://www.cnblogs.com/zfdai/p/4493868.html
Copyright © 2020-2023  润新知