資源簡介
本項目是asp.net mvc5+vue2.5的項目,花了很長時間做的。
實現(xiàn)的功能如下:
1.不僅有vue的基本功能,而且設(shè)計到vue的組件功能。
2.實現(xiàn)了增刪改查的功能,而且是一對多的。
3.后臺使用了EF進行操作數(shù)據(jù)庫,EF使用的是codeFirst
4.實現(xiàn)了分頁的功能。
5.另外,本項目無論是前臺還是后臺都對代碼進行了注釋,使得項目非常容易理解,花了很長時間做的,麻煩給打5分好評,非常感謝。
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Web;
using?System.Web.Mvc;
using?System.Web.Optimization;
using?System.Web.Routing;
namespace?VueDemo
{
????public?class?MvcApplication?:?System.Web.HttpApplication
????{
????????protected?void?Application_Start()
????????{
????????????AreaRegistration.RegisterAllAreas();
????????????FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
????????????RouteConfig.RegisterRoutes(RouteTable.Routes);
????????????BundleConfig.RegisterBundles(BundleTable.Bundles);
????????}
????}
}
評論
共有 條評論