0

我可以上传图像并将它们保存到文件夹中,但唯一的问题是将路径存储在 SQL 表中。我想将照片路径保存到数据库,以便可以在其他地方显示。这就是我到目前为止所拥有的。

物品类别:

public class Item
{
    public int ItemId { get; set; }
    public string ItemName { get; set; }
    public string Photo { get; set; }
}

这是控制器的更新操作:

[HttpPost]
public ActionResult Update(item, HttpPostedFileBase files)
{
    if (files != null && files.ContentLength > 0)
        {
            string fileName = Path.GetFileName(files.FileName);
            var physicalPath = Path.Combine(Server.MapPath("~/Content/uploads"), fileName);

            item.Photo = physicalPath;
            files.SaveAs(physicalPath);

            return Json(new { Photo = fileName }, "text/plain");
        }

    return Json(new[] { item });
}

带有上传小部件集成的网格示例:http:
//jsbin.com/safog/1

4

1 回答 1

0

试试下面的代码它工作正常。

           [HttpPost]
           public ActionResult Update(item, HttpPostedFileBase files)
            {
             if (files != null && files.ContentLength > 0)
               {
                string fileName = Path.GetFileName(files.FileName);
                 var physicalPath = path.Combine(HttpContext.Request.MapPath("~/Content/uploads"), fileName);
                 item.Photo = physicalPath;
                 files.SaveAs(physicalPath);
                 return Json(new { Photo = fileName }, "text/plain");
              } 
         return Json(new[] { item });
           }
于 2014-04-28T06:54:05.923 回答