[HttpPost]
public JsonResult SavePhoto(string base64)
{
string file = "test.jpg";
string Imgpath = Path.Combine(Server.MapPath("~/Img/"), Path.GetFileName(file));
System.IO.File.WriteAllBytes(Imgpath, Convert.FromBase64String(base64));
return Json(new { status= true},JsonRequestBehavior.DenyGet);
}
我向Postman发出请求,并向调用的Action发送一个Base64字符串它返回" true" 但是没有Image保存到给定的路径名的" Imgpath" 即可。如果我的代码没有问题,那么为什么Image没有保存在给定的路径名中" Imgpath"