From 3ca9c14328e3da29aa0cb5a2171c0b2d9ebb80c4 Mon Sep 17 00:00:00 2001 From: yubaolee Date: Sat, 7 Jun 2025 23:58:32 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9A=A0=EF=B8=8Ffeat:=20=E6=AD=A3=E5=BC=8F?= =?UTF-8?q?=E5=88=A0=E9=99=A4mvc=E9=A1=B9=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 3 --- newdocs/docs/notes/core/README.md | 2 -- newdocs/docs/notes/core/cache.md | 2 +- newdocs/docs/notes/core/specialist.md | 9 --------- newdocs/docs/notes/core/unittest.md | 2 -- 5 files changed, 1 insertion(+), 17 deletions(-) diff --git a/README.md b/README.md index f539a58e..54e6b45f 100644 --- a/README.md +++ b/README.md @@ -63,9 +63,6 @@ #### 后端启动效果 ![API启动效果图](https://images.gitee.com/uploads/images/2021/0422/012037_ec51b7e6_362401.png "api启动.png") -#### 开源MVC效果 -![开源版本效果](snapshot/layui.jpg) - #### 开源Vue2效果 ![vue2](snapshot/vue2.png) ![拖拽表单](snapshot/form.png) diff --git a/newdocs/docs/notes/core/README.md b/newdocs/docs/notes/core/README.md index da760062..c688d7c8 100644 --- a/newdocs/docs/notes/core/README.md +++ b/newdocs/docs/notes/core/README.md @@ -11,8 +11,6 @@ OpenAuth.Net是基于最新版.Net的开源权限工作流快速开发框架。 开源Vue2演示:[http://demo.openauth.net.cn:1803/](http://demo.openauth.net.cn:1803/) -开源MVC演示:[http://demo.openauth.net.cn:1802/](http://demo.openauth.net.cn:1802/) 即将弃用⚠️ - 如果你想了解企业版的内容,请访问:[http://doc.openauth.net.cn/pro](http://doc.openauth.net.cn/pro/) ::: tip 提示 diff --git a/newdocs/docs/notes/core/cache.md b/newdocs/docs/notes/core/cache.md index 7ebe25dd..5f1cda9e 100644 --- a/newdocs/docs/notes/core/cache.md +++ b/newdocs/docs/notes/core/cache.md @@ -14,7 +14,7 @@ permalink: /core/cache/ * 基于`Enyim Memcache`实现的`EnyimMemcachedContext` -可以根据自己需要,扩展其他缓存。OpenAuth.Mvc和OpenAuth.Api默认使用的是CacheContext。可以在`AutofacExt.cs`跟换自己喜欢的缓存: +可以根据自己需要,扩展其他缓存。OpenAuth.Api默认使用的是CacheContext。可以在`AutofacExt.cs`跟换自己喜欢的缓存: ```csharp public static void InitAutofac(ContainerBuilder builder) { diff --git a/newdocs/docs/notes/core/specialist.md b/newdocs/docs/notes/core/specialist.md index 29864bf5..1d3e59a9 100644 --- a/newdocs/docs/notes/core/specialist.md +++ b/newdocs/docs/notes/core/specialist.md @@ -11,15 +11,6 @@ permalink: /core/specialist/ - OpenAuth.WebApi - Controllers - StocksController.cs // WebApi控制器 -- OpenAuth.Mvc - - Controllers - - StocksController.cs // MVC控制器 - - Views - - Stocks - - index.cshtml // MVC视图 - - wwwroot - - userJs - - stock.js // 业务脚本 - OpenAuth.App - StockApp.cs // 应用层 - Request diff --git a/newdocs/docs/notes/core/unittest.md b/newdocs/docs/notes/core/unittest.md index 0bfdd168..4bc13118 100644 --- a/newdocs/docs/notes/core/unittest.md +++ b/newdocs/docs/notes/core/unittest.md @@ -10,8 +10,6 @@ permalink: /core/unittest/ * OpenAuth.App: 测试所有业务逻辑,测试级别为各种xxxApp/xxxService等。可以模拟用户登录和前端Cookie提交的信息。在该项目的`TestBase.cs`中配置连接字符串; -* OpenAuth.Mvc: 测试MVC的访问,可以模拟用户登录和前端Cookie提交的信息。使用OpenAuth.App中的测试连接字符串; - * OpenAuth.WebApi: 测试接口WebApi访问,可以模拟用户登录和前端Cookie提交的信息。使用OpenAuth.App中的测试连接字符串; 所有的测试代码均在每个项目的`Test`文件夹中编写。比如`OpenAuth.App\Test\TestAccessObjs.cs`: