7

我正在使用backbone+requirejs+jquery,并且在我当前的html页面中加载jquery插件时遇到问题(确切地说是backbone html模板)。

有我的要求配置:

require.config({

  paths: {
    // ... some code about backbone config
    jquery: '/js/lib/jquery/jquery.min',
    'jquery.camera' : '/js/jquery/jquery.camera'
  },

  shim: {
    // ... some code about backbone config
    'jquery.camera': ['jquery']  
  }
});

在我的布局 html 页面中,我有:

<script type='text/javascript' src='/js/jquery/jquery.camera.js'></script>

在我的模板页面中,我有:

<script type="text/javascript">
  jQuery(function() {

    jQuery('#test').camera({
...
</script>

最后我的浏览器消息:

Uncaught TypeError: Object [object Object] has no method 'camera'

你有什么主意吗?

同时我还有另一个问题,在我们当前的页面中包含一些 js 代码的最佳方式是什么,包括主干、requirejs 等。

谢谢 :)

4

1 回答 1

18

我解决了一个类似的问题(Jquery.cookie),但我的问题是正在加载 Jquery,然后包含 Jquery.cookie,但要求已经将 JQuery 作为静态资源。

所以像这样我将 Jquery.Cookie 传递给应用程序,它只在我的应用程序范围内插入 jquery.cookie。

require.config({

  paths: {
      'async'           : 'libs/async'
      ,'jquery'         : 'libs/jquery'
      ,'underscore'     : 'libs/underscore'
      ,'backbone'       : 'libs/backbone'
      ,'text'           : 'libs/text'
      ,'jquery.cookie'  : 'libs/jquery.cookie'   // <-- cookie lives here
  }

  ,shim: {
    'jquery': {
      exports: '$'
    }
    ,'underscore': {
      exports: '_'
    }
    ,'backbone': {
      deps: ['underscore', 'jquery'],
      exports: 'Backbone'
    }
    ,'jquery.cookie': {     //<-- cookie depends on Jquery and exports nothing
        deps: ['jquery']
    }
  }
});

然后在我添加的主 App 类中

require([
  'jquery'
  ,'underscore'
  ,'backbone'
  ,'mapApp'
  ,'jquery.cookie'   //<- this is the real trick !!!
],
  function ($, _, Backbone, App) {

在此之后,我能够找到 jquery cookie。

顺便说一句:如果您使用 Require.js 来获取它,则无需在 html 中导入 JQuery.camera,除非您在 Require.js 范围之外使用它。

于 2012-10-11T14:13:25.297 回答