Area区域路由的配置2
Posted wugh8726254
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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();
}
}
}
以上是关于Area区域路由的配置2的主要内容,如果未能解决你的问题,请参考以下文章