重构Web Api程序(Api Controller和Entity) 续篇(1)

时间:2022-06-14 13:37:20

经过一系列重构,你眼明的话,还是可以看到还有重构的地方,如:

 string newFileName = "~/Temp/" + Guid.NewGuid().ToString() + ".json";  //"~/Temp/Order1.json";
string newFilePhysicalPath = HttpContext.Current.Server.MapPath(newFileName);

它是新文件名。我们可以把它写成一个只读property: 重构Web Api程序(Api Controller和Entity) 续篇(1)

这样子,程序中所有包含此两句均可以comment out它们。 重构Web Api程序(Api Controller和Entity) 续篇(1)

再写一个方法,是把虚拟路径转换为物理路径:
重构Web Api程序(Api Controller和Entity) 续篇(1)

旧原文件参数处理与重构如下:
重构Web Api程序(Api Controller和Entity) 续篇(1)