我正在使用Almond和r.js优化器将我的所有脚本组合在一个文件中,用于基于Backbone.js的单页应用程序。
我的构建文件:
({
name: '../bower_components/almond/almond',
include: ['main'],
insertRequire: ['main'],
baseUrl: 'src',
optimize: 'uglify2',
mainConfigFile: 'src/main.js',
out: 'javascripts/scripts.js',
preserveLicenseComments: false,
paths: {
jquery: '../bower_components/jquery/dist/jquery',
underscore: '../bower_components/underscore/underscore',
backbone: '../bower_components/backbone/backbone',
kineticjs: '../bower_components/kineticjs/kineticjs',
'jquery-ui': '../bower_components/jquery-ui/ui',
'jquery.layout': '../bower_components/jquery.layout/dist/jquery.layout-latest'
},
shim: {
'jquery.layout': {
deps: [
'jquery-ui/core',
'jquery-ui/draggable',
'jquery-ui/effect',
'jquery-ui/effect-slide'
],
exports: 'jQuery.fn.layout'
}
}
})
在我的Backbone视图中,我初始化了jquery-layout插件:
define(['backbone', 'underscore', 'jquery.layout'], function(Backbone, _) {
'use strict'
return Backbone.View.extend({
el: $('#application'),
initialize: function() {
this.$el.layout({
west: {
size: '50%',
closable: false,
slidable: false,
resizable: true
}
});
}
});
});
窗格正确显示,但我无法调整其中任何一个。我发现在声明jquery-layout插件时没有初始化$.fn.draggable
(JQuery UI Draggable小部件)。
这表明可能没有加载小部件。所以我检查了组合的源文件并注意到JQuery UI Draggable小部件代码出现在jquery-layout插件代码之前,这意味着依赖项以正确的顺序插入。在Firebug控制台中打印$.fn.draggable
也会显示小部件可用,至少在文档准备好之后。
jQuery,下划线,主干,jQuery UI都是AMD模块。 jquery-layout没有AMD兼容性,因此是shim配置。它取决于JQuery UI的ui.core和ui.draggable per their docs。
对于所有这些听起来都不太抽象,here是jquery-layout插件的演示。
我已经“浪费”了8个小时试图弄清楚这一点是徒劳的,任何有关如何解决这个问题的帮助都会节省我的一天。最有可能这只涉及构建文件中我的shim配置的一些修复。
答案 0 :(得分:1)
我通过使AMD兼容的非AMD感知jquery-layout插件解决了这个问题。我在构建文件中使用了r.js优化器的onBuildWrite
钩子。这样,jQuery UI依赖项ui.draggable
在非AMD感知插件的代码加载之前被初始化:
({
name: '../bower_components/almond/almond',
include: ['main'],
insertRequire: ['main'],
baseUrl: 'src',
optimize: 'uglify2',
mainConfigFile: 'src/main.js',
out: 'javascripts/scripts.js',
preserveLicenseComments: false,
paths: {
jquery: '../bower_components/jquery/dist/jquery',
underscore: '../bower_components/underscore/underscore',
backbone: '../bower_components/backbone/backbone',
kineticjs: '../bower_components/kineticjs/kineticjs',
'jquery-ui': '../bower_components/jquery-ui/ui',
'jquery.layout': '../bower_components/jquery.layout/dist/jquery.layout-latest'
},
shim: {
'jquery.layout': {
deps: ['jquery', 'jquery-ui/draggable', 'jquery-ui/effect', 'jquery-ui/effect-slide'],
exports: 'jQuery.fn.layout'
}
},
onBuildWrite: function(moduleName, path, contents) {
if (moduleName == 'jquery.layout') {
contents = "define('jquery.layout', ['jquery', 'jquery-ui/draggable', 'jquery-ui/effect', 'jquery-ui/effect-slide'], function(jQuery) {" + contents + "});";
}
return contents;
}
})
答案 1 :(得分:0)
根据@Genti的回答并使用最新的jquery-ui,以下shim为我工作。
shim: {
'jquery.layout': {
deps: ['jquery', 'jquery-ui/core', 'jquery-ui/widgets/draggable', 'jquery-ui/effect', 'jquery-ui/effects/effect-slide', 'jquery-ui/effects/effect-drop', 'jquery-ui/effects/effect-scale'],
exports: 'jQuery.fn.layout'
}
}