我目前正在实习,从我学习MVC中的控制器应该只用于流量,而且仅用于流量。我也被告知了一个叫做“服务层”的东西,这听起来像是我应该为控制器做任何数据/业务逻辑的地方。
我一直在寻找这方面的示例和教程,但我找不到任何让我感到愚蠢的东西,因为我刚刚在一个月前刚学过MVC。我想知道是否有人能够解释并告诉我如何将以下ActionResult Index
业务逻辑转移到“服务层”。
public class LakerLegendsController : Controller
{
string pathway1 = HostingEnvironment.MapPath(@"~/App_Data/Announcement1.txt");
string pathway2 = HostingEnvironment.MapPath(@"~/App_Data/Announcement2.txt");
string pathway3 = HostingEnvironment.MapPath(@"~/App_Data/Announcement3.txt");
private MoviesEntities db = new MoviesEntities();
public ActionResult Index()
{
// Setting some ViewBag texts from announcement files.
string text1 = System.IO.File.ReadAllText(pathway1);
ViewBag.TextHTML1 = text1;
string text2 = System.IO.File.ReadAllText(pathway2);
ViewBag.TextHTML2 = text2;
string text3 = System.IO.File.ReadAllText(pathway3);
ViewBag.TextHTML3 = text3;
// Following pulls some XML information
XDocument xmlFile = XDocument.Load(@"http://na.leagueoflegends.com/en/rss.xml");
var LoLtitles = from service in xmlFile.Descendants("item")
select (string)service.Element("title");
var LoLlinks = from service in xmlFile.Descendants("item")
select (string)service.Element("link");
var LoLdescriptions = from service in xmlFile.Descendants("item")
select (string)service.Element("description");
var LoLDates = from service in xmlFile.Descendants("item")
select (string)service.Element("pubDate");
var servicing = LoLdescriptions.ToArray();
for (int i = 0; i < 4; i++)
{
servicing[i] = Regex.Replace(Server.HtmlDecode(servicing[i]), @"<[^>]*>", String.Empty);
}
ViewBag.titles = LoLtitles.ToArray();
ViewBag.links = LoLlinks.ToArray();
ViewBag.descriptions = servicing;
ViewBag.dates = LoLDates.ToArray();
// Pulls the DB Table
var users = db.Users.Include(u => u.championList).Include(u => u.championList1).Include(u => u.championList2).Include(u => u.eloList).Include(u => u.rankList).Include(u => u.roleList).Include(u => u.roleList1);
return View(users.ToList());
}
}
这段代码所做的就是返回一个数据库表,以及一些额外的逻辑,它可以提取XML文件并解析其中的一些信息。
我想知道如何将这个特定的例子变成使用服务层(或者我应该用于逻辑的任何东西)。请尝试尽可能简单,因为我还是MVC的新手。
答案 0 :(得分:2)
服务层定义与接口客户端层有关的可用操作集,即封装应用程序的业务逻辑。它们只是不同类库(或命名空间)中的独立类,它们独立于ASP.NET Web API或WCF可以使用的MVC框架基础结构。
我一直在寻找关于此的示例和教程,但我 我找不到任何让我愚蠢的东西
这是非常着名的音乐商店的好例子。这可以帮助您通过DI Injecting a Controller MSDN
完成服务层服务层的目的是用于解耦和可维护性