实习生配置不处理AMD垫片

我正在尝试使用Intern测试Require.js项目。 我在我的测试中遇到错误,当jQuery插件被加载时jQuery没有定义。 我的加载程序配置如下所示:

loader: {
    // Aliased paths
  paths: {
    'dt': 'dt',
    'jq': 'jquery',

    'jquery': 'jquery/jquery-1.8.3',
    'jquerymx': 'jquery/jquerymx-3.2.custom',
    'jquery.ui': 'jquery/jquery-ui-1.9.2.custom.min',
    'jquery.ui.widget': 'jquery/jquery.ui.widget',
    'jquery.jscrollpane': 'jquery/jquery.jscrollpane.min.edit',
    'jquery.colorbox': 'jquery/jquery.colorbox-min',
    'jquery.selectbox': 'jquery/jquery.selectbox-0.2.min.edit',
    'jquery.base64': 'jquery/jquery.base64',
    'jquery.cookie': 'jquery/jquery.cookie',
    'jquery.urldecoder': 'jquery/jquery.urldecoder.min',
    'jquery.fileupload': 'jquery/jquery.fileupload',
    'jquery.history': 'history/scripts/compressed/history.adapter.jquery',

    'openajax': 'openajax_2.0.7/OpenAjaxUnmanagedHub',
    'zeroclipboard': 'zeroclipboard/ZeroClipboard'
  },

  // Plugin mappings
  map: {
    '*': {
      'css': 'requirejs/require-css/css',
      'text': 'requirejs/text'
    }
  },

  // Shims for non-AMD libraries, mainly jQuery plugins
  shim: {
    'openajax': {
      exports: 'OpenAjax'
    },

    'zeroclipboard': {
      exports: 'ZeroClipboard'
    },

    'jquerymx': ['jquery'],
    'jquery.ui': ['jquery'],
    'jquery.ui.widget': ['jquery'],
    'jquery.jscrollpane': ['jquery'],
    'jquery.colorbox': ['jquery'],
    'jquery.selectbox': ['jquery'],
    'jquery.base64': ['jquery'],
    'jquery.cookie': ['jquery'],
    'jquery.urldecoder': ['jquery'],
    'jquery.fileupload': ['jquery'],
    'jquery.history': [
      'jquery',
      'history/scripts/compressed/history',
      'history/scripts/compressed/history.html4'
    ]
  }
}

我已经检查过,以确保jQuery和其他依赖项实际上正在加载,并且它们只是不正确的顺序。 实习生使用的Dojo AMD加载程序是否不处理填充程序配置?


问题是实习生使用的AMD加载程序当前没有实现shim配置属性AMD规范。 直到你问这个问题,我实际上并不知道它是标准的一部分。

目前,您可以通过Intern使用不同的AMD加载程序来运行功能测试,但目前,在本地计算机上运行单元测试会很困难。


我所要做的就是将useLoader配置指向require.js,然后poof。 我在我的应用程序中使用了熟悉的shim配置和路径配置。 巴姆。

链接地址: http://www.djcxy.com/p/71421.html

上一篇: Intern configuration not processing AMD shim

下一篇: Linker Error : gcc