溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

如何實(shí)現(xiàn)ASP.NET MVC5網(wǎng)站開(kāi)發(fā)文章管理架構(gòu)

發(fā)布時(shí)間:2021-09-29 11:31:15 來(lái)源:億速云 閱讀:110 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要講解了“如何實(shí)現(xiàn)ASP.NET MVC5網(wǎng)站開(kāi)發(fā)文章管理架構(gòu)”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“如何實(shí)現(xiàn)ASP.NET MVC5網(wǎng)站開(kāi)發(fā)文章管理架構(gòu)”吧!

一、總體說(shuō)明
先看一下文章管理設(shè)想要實(shí)現(xiàn)的功能:

如何實(shí)現(xiàn)ASP.NET MVC5網(wǎng)站開(kāi)發(fā)文章管理架構(gòu)

再看一下類(lèi)圖

如何實(shí)現(xiàn)ASP.NET MVC5網(wǎng)站開(kāi)發(fā)文章管理架構(gòu)

這里Category是欄目;CommonModel是公共模型;Article是文章;Attachment是附件;

CommonModel是內(nèi)容管理這塊抽取出來(lái)的公共部分,像文章,咨詢(xún)甚至產(chǎn)品都有一些共同的內(nèi)容這里把它單獨(dú)提取出來(lái)作為一個(gè)類(lèi)。CommonModel可能包含一片文章,包含一組附件,包含一系列評(píng)論,他們之間的關(guān)系類(lèi)圖中已經(jīng)表示出來(lái)。

 二、搭建架構(gòu)
這個(gè)順序根以前一樣

如何實(shí)現(xiàn)ASP.NET MVC5網(wǎng)站開(kāi)發(fā)文章管理架構(gòu)

1、IDAL
在IDAL添加接口InterfaceCommonModelRepository,其實(shí)只是繼承自InterfaceBaseRepository,沒(méi)有添加任何其他內(nèi)容。

namespace Ninesky.IDAL
{
 /// <summary>
 /// 公共模型接口
 /// <remarks>
 /// 創(chuàng)建:2014.02.23
 /// 修改:2014.02.28
 /// </remarks>
 /// </summary>
 public interface InterfaceCommonModelRepository:InterfaceBaseRepository<Models.CommonModel> {

 }
}

再依次添加InterfaceCategory,InterfaceArticle,InterfaceAttachment,方式和公共模型接口相同。

2、DAL
DAL中是對(duì)IDAL接口的實(shí)現(xiàn),還是從CommonModel開(kāi)始,先添加CommonModelRepository,也是跟原來(lái)一樣直接繼承沒(méi)有什么代碼。

namespace Ninesky.DAL
{
 /// <summary>
 /// 公共模型倉(cāng)儲(chǔ)
 /// <remarks>
 /// 創(chuàng)建:2014.02.23
 /// </remarks>
 /// </summary>
 public class CommonModelRepository:BaseRepository<Models.CommonModel>, IDAL.InterfaceCommonModel
 {
 }
}

然后依次添加CategoryRepository,ArticleRepository,AttachmentRepository。

3.IBLL

這次先從InterfaceCategoryService開(kāi)始,InterfaceArticleService,InterfaceCommentService,InterfaceAttachmentService。InterfaceCommonModelService內(nèi)容較多放在最后。
InterfaceCategoryService

具體功能會(huì)在做欄目的時(shí)候再寫(xiě),這里暫時(shí)空著。

namespace Ninesky.IBLL
{
 /// <summary>
 /// 欄目服務(wù)接口
 /// <remarks>
 /// 創(chuàng)建:2014.02.23
 /// </remarks>
 /// </summary>
 public class InterfaceCategoryService:InterfaceBaseService<Models.Category>
 {
 }
}

4.BLL

同樣先從CategoryService開(kāi)始,然后依次添加ArticleService,AttachmentService。CommonModelService。

using Ninesky.DAL;
using Ninesky.IBLL;
using Ninesky.Models;
using System;
using System.Collections.Generic;
using System.Linq;

namespace Ninesky.BLL
{
 /// <summary>
 /// 欄目服務(wù)
 /// <remarks>
 /// 創(chuàng)建:2014.02.27
 /// </remarks>
 /// </summary>
 public class CategoryService:BaseService<Category>,InterfaceCategoryService
 {
 public CategoryService() : base(RepositoryFactory.CategoryRepository) { }
 }
}

5、Web

在web項(xiàng)目的Member區(qū)域下添加三個(gè)空控制器。

欄目控制器CategoryController

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Ninesky.IBLL;
using Ninesky.BLL; 
using Ninesky.Models;

namespace Ninesky.Web.Areas.Member.Controllers
{
 [Authorize]
 public class CategoryController : Controller
 {
 private InterfaceCategoryService categoryRepository;
 public CategoryController() { categoryRepository = new CategoryService(); }
 

 }
}

文章控制器ArticleController

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Ninesky.Models;
using Ninesky.IBLL;
using Ninesky.BLL;

namespace Ninesky.Web.Areas.Member.Controllers
{
 public class ArticleController : Controller
 {
 private InterfaceArticleService articleService;
 private InterfaceCommonModelService commonModelService;
 public ArticleController() { articleService = new ArticleService(); commonModelService = new CommonModelService(); }
 }
}

附件控制器AttachmentController

using System;
using System.Collections.Generic;
using System.Linq;
using System.Collections;
using System.Web;
using System.Web.Mvc;
using System.IO;
using Ninesky.IBLL;
using Ninesky.BLL;
using Ninesky.Models;

namespace Ninesky.Web.Areas.Member.Controllers
{
 /// <summary>
 /// 附件控制器
 /// <remarks>
 /// 創(chuàng)建:2014.03.05
 /// </remarks>
 /// </summary>
 [Authorize]
 public class AttachmentController : Controller
 {
 }
}

感謝各位的閱讀,以上就是“如何實(shí)現(xiàn)ASP.NET MVC5網(wǎng)站開(kāi)發(fā)文章管理架構(gòu)”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)如何實(shí)現(xiàn)ASP.NET MVC5網(wǎng)站開(kāi)發(fā)文章管理架構(gòu)這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI