我尝试使用angular uploader使用npm下载它,然后将其全部浏览到单个文件中。可以看到错误详细信息here
我无法理解错误,因为现在我还是AngularJS的新手。这是我的代码
var angular = require('angular');
angular
.module('jobApp', [require('angular-material'), require('ng-file-upload')])
.controller('MainCtrl', ['$rootScope', '$scope', '$mdToast', '$animate', '$http', '$timeout', '$q', '$log', 'Upload',
function($rootScope, $scope, $mdToast, $animate, $http, $timeout, $q, $log, Upload) {
'use strict';
// Initialize the scope variables
$scope.$watch('files', function () {
$scope.upload($scope.files);
});
$scope.upload = function (files) {
if (files && files.length) {
for (var i = 0; i < files.length; i++) {
var file = files[i];
Upload.upload({
url: 'http://sr-recruit.herokuapp.com/resumes',
fields: {
'name': $scope.name,
'email': $scope.email,
'about': $scope.about
},
file: file
}).progress(function (evt) {
var progressPercentage = parseInt(100.0 * evt.loaded / evt.total);
$scope.log = 'progress: ' + progressPercentage + '% ' +
evt.config.file.name + '\n' + $scope.log;
}).success(function (data, status, headers, config) {
$scope.log = 'file ' + config.file.name + 'uploaded. Response: ' + JSON.stringify(data) + '\n' + $scope.log;
$scope.$apply();
});
}
}
};
}]);
更新
现在我正在使用Browserify-shim以Commonjs格式正确封装Angular-file-upload。感谢@ryan Johnson。
这是package.json
{
"browser": {
"angular": "./node_modules/angular/angular.js",
"ng-file-upload": "./node_modules/ng-file-upload/dist/ng-file-upload-all.js"
},
"browserify-shim": {
"angular": {
"exports": "angular"
},
"ng-file-upload": {
"exports": "angular.module('ngFileUpload').name"
}
},
"browserify": {
"transform": [
"browserify-shim"
]
}
}
我仍然是错误
TypeError: Cannot read property '' of undefined
不确定原因。仅供参考我使用浏览器中内置的Laravel-elixir来运行任务。
答案 0 :(得分:17)
我注意到您正在使用require('ng-file-upload')
来包含该模块。即使ng-file-upload
模块通过npm可用,下载的JS文件也不是commonJS格式。
为了使require('ng-file-upload')
在您的示例中起作用,源文件需要像这样导出模块:
module.exports = angular.module('ng-file-upload').name;
由于您所包含的文件不是这种情况,因此您需要shim才能使用Browserify。这是一篇关于Properly shim AngularJS applications using Browserify的好文章。