mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-07 02:00:47 +08:00
修改了无法保存项目文件的bug
This commit is contained in:
@@ -14,7 +14,17 @@ using Type = System.Type;
|
||||
|
||||
namespace Serein.Library.Core.Http
|
||||
{
|
||||
/*
|
||||
Router类负责解析请求的url,url参数,boby参数
|
||||
根据url
|
||||
|
||||
web server 监听类,监听外部的请求
|
||||
router 选择对应的控制器
|
||||
agent 负责传入对应的参数,注入依赖
|
||||
|
||||
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/// <summary>
|
||||
@@ -22,7 +32,6 @@ namespace Serein.Library.Core.Http
|
||||
/// </summary>
|
||||
public class Router
|
||||
{
|
||||
|
||||
private readonly ConcurrentDictionary<string, bool> _controllerAutoHosting; // 存储是否实例化
|
||||
private readonly ConcurrentDictionary<string, Type> _controllerTypes; // 存储控制器类型
|
||||
private readonly ConcurrentDictionary<string, object> _controllerInstances; // 存储控制器实例对象
|
||||
|
||||
Reference in New Issue
Block a user