Error: Unexpected token punc «)», expected punc «,» while minifying angularjs app
Error: Unexpected token punc «)», expected punc «,» while minifying angularjs app
我正在尝试缩小我的 app.js 代码(尝试了几种在线工具)。但是我得到了问题中提到的错误。这是我的代码:
(function() {
var app = angular.module('LazyApp', []);
app.directive('lazyLoad', ['$window', function($window) {
return {
restrict: 'A',
scope : {},
link: function(scope, element, attrs) {
var images = Array.prototype.slice.call(element[0].querySelectorAll("img[data-src]"));
var videos = Array.prototype.slice.call(element[0].querySelectorAll("iframe[data-src]"));
}
}
})
}])();
我做错了什么?
我想你想要这个
(function() {
angular.module('LazyApp', [])
.directive('lazyLoad', ['$window', function($window) {
return {
restrict: 'A',
scope : {},
link: function(scope, element) {
var images = Array.prototype.slice.call(element[0].querySelectorAll("img[data-src]"));
var videos = Array.prototype.slice.call(element[0].querySelectorAll("iframe[data-src]"));
}
};
}])
})();
你的指令构造函数的右方括号放错了地方。
我正在尝试缩小我的 app.js 代码(尝试了几种在线工具)。但是我得到了问题中提到的错误。这是我的代码:
(function() {
var app = angular.module('LazyApp', []);
app.directive('lazyLoad', ['$window', function($window) {
return {
restrict: 'A',
scope : {},
link: function(scope, element, attrs) {
var images = Array.prototype.slice.call(element[0].querySelectorAll("img[data-src]"));
var videos = Array.prototype.slice.call(element[0].querySelectorAll("iframe[data-src]"));
}
}
})
}])();
我做错了什么?
我想你想要这个
(function() {
angular.module('LazyApp', [])
.directive('lazyLoad', ['$window', function($window) {
return {
restrict: 'A',
scope : {},
link: function(scope, element) {
var images = Array.prototype.slice.call(element[0].querySelectorAll("img[data-src]"));
var videos = Array.prototype.slice.call(element[0].querySelectorAll("iframe[data-src]"));
}
};
}])
})();
你的指令构造函数的右方括号放错了地方。