这是我第一次使用ASP.NET MVC中的文件上传,我已经能够上传图像,调整大小,将其保存到服务器,重命名src-string所以src to image反映了产品名称(例如:" ProductImages / Original / FIFA14.jpg")。图像src也存储在数据库中,用于在视图中使用Url.Action()显示图像。
对于我的编辑帖子,我希望用户能够像往常一样更改产品信息。每次用户提交表单时,之前上传的图像都将被上传的新图像文件覆盖。
当我进入编辑产品获取视图时,文件输入显示"没有选择文件"。 我希望它显示用户在从本地计算机创建产品之前上传的图像文件。
真的有办法吗,怎么样?
这是我在编辑视图中的文件输入:
<div class="form-group">
@Html.LabelFor(model => model.ProductImageViewModel.ImageUpload, new { @class = "control-label col-md-2" })
<div class="col-md-10">
<input type="file" name="imageUpload" id="imageUpload" />
@Html.ValidationMessageFor(model => model.ProductImageViewModel.ImageUpload)
</div>
</div>
编辑获取的Controller方法:
// GET: /Product/Edit/5
public ActionResult Edit(Guid id)
{
Product product = _productRepository.GetById(id);
var productViewModel = new ProductViewModel
{
Id = product.Id,
Name = product.Name,
Description1 = product.Description1,
Description2 = product.Description2,
Description3 = product.Description3,
Status = product.Status,
Image = product.Image,
Weight = product.Weight,
Price = product.Price,
ReleaseDate = product.ReleaseDate,
Category = product.Category,
Categories = GetCategoryDropDownListForEdit(product),
ProductStatuses = GetStatusDropDownListForEdit(product),
};
return View(productViewModel);
}
这是我在创建方法中上传图片的方式:
// POST: /Product/Create
[HttpPost]
public ActionResult Create(ProductViewModel model, HttpPostedFileBase imageUpload)
{
if (UploadedFileIsValidImage(imageUpload))
{
byte[] productPicture = new byte[imageUpload.ContentLength];
imageUpload.InputStream.Read(productPicture, 0, imageUpload.ContentLength);
WebImage img = new WebImage(imageUpload.InputStream);
img.Resize(200, 200);
var fileName = imageUpload.FileName;
string imageName = model.Name;
string extension = Path.GetExtension(fileName);
var productImageFileName = imageName + extension;
img.FileName = productImageFileName;
var filePathOriginal = Server.MapPath("~/ProductImages/Originals");
var filePathThumbNail = Server.MapPath("~/ProductImages/ThumbNails");
string savedImageFileName = Path.Combine(filePathOriginal, productImageFileName);
img.Save(savedImageFileName);
model.ProductImageViewModel.ImageSrc = savedImageFileName;
model.Image = savedImageFileName;
try
{
var guid = new Guid(model.SelectedCategory);
_manager.AddProduct(
model.Name, model.Description1, model.Description2, model.Description3, Convert.ToDecimal(model.Price),
Convert.ToDateTime(model.ReleaseDate),
Convert.ToDouble(model.Weight), model.ProductImageViewModel.ImageSrc, guid);
_categoryRepository.Save();
return RedirectToAction("Index");
}
catch
{
return View();
}
}
else
{
model.Categories = CategoryDropDownListForCreate();
return View(model);
}
}
那么如何在文件输入中获取输入以显示该产品的当前上传文件?
答案 0 :(得分:1)
您不能这样做,因为这是一个安全问题。如果您尝试通过javascript设置它 使用以下代码
<script type="text/javascript">
document.forms["form1"].elements["uploadImage"].value = "C:\Users\Public\Pictures\Sample Pictures\Chrysanthemum.jpg";
</script>
如果您可以检查浏览器控制台,则会输出错误消息
SecurityError: The operation is insecure.
答案 1 :(得分:0)
当输入的类型为“file”时,您无法设置它的值。通常,您将在编辑视图中添加一个链接以下载当前上载的文件。
答案 2 :(得分:0)
尝试这种方式(不是解决方案,而是一种解决方法),
在“编辑视图”中,并排显示上传图像和图像上传控件的链接。
如果用户想要查看/预览上传的图像,可以使用图像链接。
对于紧密取代旧图像的新图像。您可以检查这是控制器Edit
方法。如果HttpPostedFileBase imageUpload
不为null,则更新,否则只需将模型保存到数据库中。
正如其他用户已经提到的,for security reason you cannot assign the path to input control.
答案 3 :(得分:0)
首先我在DB中保存了我的图像的URl,然后我不得不解决问题并用这个来解决它
// Add this to your controller to check if the file is coming empty, If yes then I copy my previous Url to the new edited object
else if (file== null)
{
Product thisProduct = db.Products.Where(p => p.Id == product.Id).FirstOrDefault();
product.Url = thisProduct.Url;
}
if (ModelState.IsValid)
{
// had to use AddOrUpdate instead of Modified
db.Set<Product>().AddOrUpdate(product);
//db.Entry(product).State = EntityState.Modified;
db.SaveChanges();
return RedirectToAction("Index");
}