请帮帮我! 我的控制器无法从角度来看最近的图像文件。
类产品:
public class Product
{
public int ProductID { get; set; }
public string ProductName { get; set; }
public int Price { get; set; }
public byte[] Image { get; set; }
}
我在My Controller中尝试用户HttpPostedFileBase但不起作用。 我应该在调用控制器函数之前将File转换为字节数组吗?
答案 0 :(得分:0)
看看这些:
File Upload Using Angular JS and ASP.NET MVC 5
File Upload with Angular and ASP.NET MVC 4
如果您没有上传大图片,也可以将它们转换为Base64
字符串并将其发布到服务器。