我使用 AngularJs 制作了一个网络应用程序,用户可以使用ng-file-upload.txt
将文件上传到服务器。
现在我想要一个简单的 Node.js 服务器来测试上传部分并观察页面中的进度条和错误消息的行为,但是对 Node.js 和整个后端的工作方式知之甚少,我尝试使用Node.js 服务器由ng-file-upload
非常wiki提供。
我尝试进行一些更改,将我带到这个app.js文件:
var http = require('http')
, util = require('util')
, multiparty = require('multiparty')
, PORT = process.env.PORT || 27372
var server = http.createServer(function(req, res) {
if (req.url === '/') {
res.writeHead(200, {'content-type': 'text/html'});
res.end(
'<form action="/upload" enctype="multipart/form-data" method="post">'+
'<input type="text" name="title"><br>'+
'<input type="file" name="upload" multiple="multiple"><br>'+
'<input type="submit" value="Upload">'+
'</form>'
);
} else if (req.url === '/upload') {
var form = new multiparty.Form();
form.parse(req, function(err, fields, files) {
if (err) {
res.writeHead(400, {'content-type': 'text/plain'});
res.end("invalid request: " + err.message);
return;
}
res.writeHead(200, {'content-type': 'text/plain'});
res.write('received fields:\n\n '+util.inspect(fields));
res.write('\n\n');
res.end('received files:\n\n '+util.inspect(files));
});
} else {
res.writeHead(404, {'content-type': 'text/plain'});
res.end('404');
}
});
server.listen(PORT, function() {
console.info('listening on http://127.0.0.1:'+PORT+'/');
});
UserController.js就这么简单
UserController = function() {};
UserController.prototype.uploadFile = function(req, res) {
// We are able to access req.files.file thanks to
// the multiparty middleware
var file = req.files.file;
console.log(file.name);
console.log(file.type);
}
module.exports = new UserController();
在我的 AngularJs 应用程序的指令控制器中,我以这种方式使用ng-file-upload
上传服务
var upload = Upload.upload({
url: 'http://127.0.0.1:27372/upload',
method: 'POST',
fields: newFields,
file: newFile
}).progress(function (evt) {
$scope.progressPercentage = parseInt(100.0 * evt.loaded / evt.total);
}).success(function (data, status, headers, config) {
console.log("OK");
}).error(function(data, status, headers, config) {
console.log("KO");
});
最后,我像这样启动服务器:
node app.js
一切看起来都很好:
listening on http://127.0.0.1:27372
话虽如此,当我启动 AngularJs 网络应用程序并尝试上传文件时,我收到以下错误
OPTIONS http://127.0.0.1:27372/upload 400 (Bad Request) angular.js:10514
XMLHttpRequest cannot load http://127.0.0.1:27372/upload. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:9000' is therefore not allowed access. The response had HTTP status code 400. (index):1
经过一番谷歌搜索后,我发现许多用于允许这样的 CORS 请求的要点,但我的 Node.js 知识太差了,我什至不知道应该将这些代码行放在哪里。
此外,我尝试console.log(err)
在app.js
form.parse
零件本身中获取 a 并将其打印在终端上:
DEBUG SERVER: err =
{ [Error: missing content-type header] status: 415, statusCode: 415 }
我缺少什么,我该怎么做才能让这个简单的 Node.js 服务器正常工作?
编辑 29/07/2015
我选择遵循@Can Guney Aksakalli建议的第一个选项,因为这是我唯一能做的,但即使现在代码看起来像这样:
var server = http.createServer(function(req, res) {
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept');
if (req.url === '/') {
res.writeHead(200, {'Content-type': 'text/html'});
// and the code stays the same
这个解决方案不起作用;node app.js
正如我在最初问题的最后一部分中所写的那样,我在 Chrome 控制台和我调用的终端中不断收到相同的错误消息。