Ter*_*ård 3 javascript angularjs angular-file-upload
任何人都知道我为什么在这个Angular代码上获得Unknown provider?
我正在使用Angular File Upload指令并使用此示例:
只是似乎无法弄清楚为什么我收到这个错误...
module.js文件:
angular.module('photoApp', ['ngRoute']);
Run Code Online (Sandbox Code Playgroud)
scripts.js文件:
// configure our routes
angular.module('photoApp').config(function ($routeProvider) {
$routeProvider
// route for the home page
.when('/', {
templateUrl: 'Pages/home.html',
controller: 'mainController'
})
// route for the contact page
.when('/uploadphoto', {
templateUrl: 'Pages/photoupload.html',
controller: 'photoUploadController'
});
});
// create the controller and inject Angular's $scope
angular.module("photoApp").controller('photoUploadController',
function ($scope, $http, $timeout, $upload) {
$scope.message = 'Upload your photo';
$scope.upload = [];
$scope.fileUploadObj = { testString1: "Test string 1", testString2: "Test string 2"
};
$scope.onFileSelect = function($files) {
//$files: an array of files selected, each file has name, size, and type.
for (var i = 0; i < $files.length; i++) {
var $file = $files[i];
(function(index) {
$scope.upload[index] = $upload.upload({
url: "./api/file/upload", // webapi url
method: "POST",
data: { fileUploadObj: $scope.fileUploadObj },
file: $file
}).progress(function(evt) {
// get upload percentage
console.log('percent: ' + parseInt(100.0 * evt.loaded / evt.total));
}).success(function(data, status, headers, config) {
// file is uploaded successfully
console.log(data);
}).error(function(data, status, headers, config) {
// file failed to upload
console.log(data);
});
})(i);
}
}
$scope.abortUpload = function(index) {
$scope.upload[index].abort();
}
});
Run Code Online (Sandbox Code Playgroud)
只需添加依赖性angularFileUpload并确保以正确的顺序引用JS文件,您应该好好去
的index.html
<script src="angular-file-upload-shim.min.js"></script>
<script src="angular.min.js"></script>
<script src="angular-file-upload.min.js"></script>
Run Code Online (Sandbox Code Playgroud)
module.js
angular.module('photoApp', ['ngRoute', 'angularFileUpload']);
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
5260 次 |
| 最近记录: |