Area区域路由的配置2

 

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;

namespace LayUICore.Areas.Admin.Controllers
{
public class IndexController : Controller
{
[Area("Admin")]
public IActionResult Index()
{
//https://q.cnblogs.com/q/126307/
return View();
}
}
}

posted @ 2020-06-07 09:42  .net&new  阅读(171)  评论(0编辑  收藏  举报