我正在使用backbone + requirejs + jquery,我在当前的html页面(精确的主干html模板)中加载了jquery插件有问题。
我需要配置:
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代码的最佳方法是使用backbone,requirejs等。
谢谢:)
答案 0 :(得分: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。
BTW :如果您使用Require.js来获取它,则无需在html中导入JQuery.camera,除非您在Require.js范围之外使用它。