如何在angularjs中上传图像并将其路径存储到sql server并使用angularjs将其显示在asp.net mvc应用程序中。
答案 0 :(得分:0)
我一直处于这种情况,我如何处理它是用this directive轻松获取控制器中的图像,然后向ASP.NET MVC中的操作发送请求。将文件保存在磁盘上并将路径保存在数据库中。如下所示:
public void UploadImage()
{
HttpPostedFileBase file = Request.Files["uploadedImage"];
// write your code to save image
string uploadedPath = Server.MapPath("~/") + file.FileName;
file.SaveAs(uploadedPath);
//save uploadedPath in database
}