我将jQueryUI与RequireJS和AngularJS结合使用。我将jqueryui组件包装在require语句中,如:
define(['jquery','./core','./mouse', './widget'], function (jQuery) {
(function( $, undefined ) {
$.widget("ui.draggable", $.ui.mouse, {....});
})(jQuery);
});
并创建了一个AngularJS指令来包装它:
require(['angular', 'app', 'jquery', 'lib/jquery-ui/draggable'], function(angular, app, $){
app.directive('draggable', ['$timeout','draggableConfig', function ($timeout) {
return {
restrict: 'AE',
scope: {
ngModel: '=',
options: '='
},
link: function ($scope, $element, $attributes) {
$timeout(function(){
$element.draggable();
}, 50)
}
}
}]);
});
但每5次应用中就有2次会抛出错误,如:
TypeError: Object [object Object] has no method 'draggable'
at http://localhost/phoenix/directives/draggable.js:21:30
at http://localhost/phoenix/lib/angular/angular.js:13152:28
at completeOutstandingRequest (http://localhost/phoenix/lib/angular/angular.js:3996:10)
at http://localhost/phoenix/lib/angular/angular.js:4302:7
我尝试了无数的事情,却一直没有运气。我非常确定可拖动的东西不会受到指令加载时间的限制,但依赖关系是正确的,所以我失去了原因。有什么想法吗?
答案 0 :(得分:0)
这是一个时间问题。 RequireJs异步加载文件。您需要在require config中使jquery-ui成为jquery的依赖项。
require.config({
baseUrl: 'Scripts/App',
paths: {
jQueryUI: '../Lib/Jquery/jquery-ui.min',
jQuery: '../Lib/Jquery/jquery.min'
},
shim: {
jQueryUI: { deps: ['jQuery'] },
}
});
答案 1 :(得分:0)
该指令应该require
时使用define
。