gpt4 book ai didi

angularjs - 发布http ://localhost:8082/public/fileUpload 404 (Not Found) when file upload button is clicked

转载 作者:太空宇宙 更新时间:2023-11-04 02:09:36 28 4
gpt4 key购买 nike

嗨,我想将图像上传到我的本地路径。

我正在使用 angularjs,我正在尝试将图像上传到我的本地路径,但我无法将图像存储在我的本地路径中。

当我点击上传按钮时,我得到

POST http://localhost:8082/public/fileUpload 404 (Not Found)

但我已在本地文件夹中添加了 fileUpload 文件夹。

这里显示找不到文件上传。

下面我添加了我的代码,任何人都可以查看我的代码。

<html>

<head>
<script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
</head>

<body ng-app = "myApp">

<div ng-controller = "myCtrl">
<input type="file" file-model="myFile"/>
<button ng-click="uploadFile()">upload me</button>
</div>

<script>
var myApp = angular.module('myApp', []);

myApp.directive('fileModel', ['$parse', function ($parse) {
return {
restrict: 'A',
link: function(scope, element, attrs) {
var model = $parse(attrs.fileModel);
var modelSetter = model.assign;

element.bind('change', function(){
scope.$apply(function(){
modelSetter(scope, element[0].files[0]);
});
});
}
};
}]);

myApp.service('fileUpload', ['$http', function ($http) {
this.uploadFileToUrl = function(file, uploadUrl){
var fd = new FormData();
fd.append('file', file);
$http.post(uploadUrl, fd, {
transformRequest: angular.identity,
headers: {'Content-Type': undefined}
})
.success(function(){
})
.error(function(){
});
}
}]);

myApp.controller('myCtrl', ['$scope', 'fileUpload', function($scope, fileUpload){

$scope.uploadFile = function(){
var file = $scope.myFile;
console.log('file is ' );
console.dir(file);
var uploadUrl = "/public/fileUpload";
fileUpload.uploadFileToUrl(file, uploadUrl);
};

}]);

</script>

</body>
</html>

最佳答案

在监听本地主机上端口 8082 的应用程序中,您没有用于 POST /public/fileUpload 的路由处理程序。

您可能有一个用于其他方法(如 GET)的路由处理程序,当您在浏览器中输入 URL 时,它可能会给您一个响应,但要使其工作,您需要有一个 POST 处理程序。

查看您的后端代码并搜索 /public/fileUpload 路由处理程序。确保正确处理 POST。

使用curl -v -X POST http://localhost:8082/public/fileUpload 确保您获得为 POST 处理的路由。

关于angularjs - 发布http ://localhost:8082/public/fileUpload 404 (Not Found) when file upload button is clicked,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42856296/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com