自昨天以来,我一直在努力理解这一点,但即使通过询问Google和StackOverFlow,我找不到任何解决方案。 问题是我正在构建一个项目,其中包含“Product”Model,Controller和Views。在new.ejs视图中,我有一个包含文件标签(命名图像)的表单。因此,在控制器上,我尝试通过在控制台中记录req.files.image.path来获取图像路径,但req.files为空。我还尝试显示未定义的req.body.image。
这是客户端代码(views / product / new.ejs):
(这是一个Sails.js应用程序)
这是客户端代码(views / product / new):
<div class='container'>
<form action='/product/create' role='form' class='form-signin' enctype="multipart/form-data" id='product-form'>
<div class='form-group'>
<label class='sr-only' for='name'>Name of the product</label>
<input type="text" class='form-control' placeholder="Name" name='name' id='name' />
</div>
<div class='form-group'>
<label class='sr-only' for='image'>Image of the product</label>
<input type="file" name='image' id='image' />
</div>
.
.
.etc...
这是服务器端(api / controllers / ProductController.js):
'create': function(req, res, next) {
// Include the node file module
var fs = require('fs');
console.log(req.files); //This logs : { } in the console
console.log(req.body.image); //This logs : undefined in the console
//Readfile with fs doesn't work cause req.files is empty
// fs.readFile(req.files.image.path, function(error, data) {
// //get image name
// var imageName = req.files.data.name;
// //if enable to get name
// if (!imageName) {
// console.log('error uploading image');
// res.redirect('/product/new');
// //Else if we have an image
// } else {
// //change the path to our own
// var newPath = __dirname + '/assets/images/products/fullsize/' + imageName;
// fs.writeFile(newPath, data, function(error) {
// console.log(newPath);
// //res.redirect('/product' + imageName);
// });
// }
// });
}
感谢您的帮助。
垫。
答案 0 :(得分:3)
在你的html表单中使用method = post