我目前正在使用jQuery portlet / sortable / draggable开发一个门户网站,其中还包含一个内容管理系统,所有这些都在ASP.NET MVC中2.只有管理员才能更改布局/内容该网站目前。
每个视图都基于Controller和Action获取页面的个性化(来自基本控制器)。然后视图循环遍历小部件并为每个小部件调用renderaction。
目前,我在每个视图上都有View +“Edit”操作,将页面设置为编辑模式。因为我复制代码必须有一个更好的方法,但我不能在我的生活中看到它!
您如何实施允许编辑每个视图的操作?
public ActionResult Legal()
{
PageModel model = GetPageSetting();
return View("Portal", model.PageSetting.Master.Path, model);
}
[HttpPost]
[Authorize(Roles = "Administrator")]
public ActionResult LegalEdit(EditorModel e)
{
PageModel model = GetPageSetting("Legal", "Home", true);
return View("Portal", model.PageSetting.Master.Path, model);
}
//这是在基本控制器
中protected PageModel GetPageSetting(string action, string controller, bool isEditing)
{
PersonalizationProcess personalizationProcess = new PersonalizationProcess();
string path = string.Format("~/{0}/{1}", controller, action);
string userName;
bool isAuthenticated;
if (User == null)
{
userName = "TestUser";
isAuthenticated = false;
}
else
{
userName = User.Identity.Name;
isAuthenticated = User.Identity.IsAuthenticated;
}
PageSetting setting = personalizationProcess.GetPageSetting(userName, isAuthenticated, path);
PageModel model = new PageModel();
model.Act = action;
model.Con = controller;
model.IsEditing = isEditing;
model.PageSetting = setting;
return model;
答案 0 :(得分:0)
如果不查看代码,很难就如何避免代码重复给出具体建议。但一般来说,你想要“提取方法/提取类”,直到你不能再提取:),而且,你可以使用一些MVC基础设施来帮助你做一些重复的代码,即。 ModelBinders和ActionFilters。
也许您可以发布一些观看/编辑操作代码,以指明您更好的方向