不能重定向到主程序中的区域

时间:2019-07-09 08:51:00

标签: asp.net-mvc asp.net-core

当我进入主程序时,我不能去另一个地方。

df = df.groupby(['product','Week_Number'], as_index=False)['Sales'].sum()
df['next_week'] = df.groupby('product')['Sales'].shift(-1).fillna(0, downcast='int')
print (df)
   product  Week_Number  Sales  next_week
0        1            1     10         20
1        1            2     20          0
2        2            1     15          0

这是我的主控制器。我需要使用URL admin / home / temping /进入管理区域,但是这段代码为我提供了这个URL:namespace WebApplication1.Controllers { public class HomeController : Controller { // GET: /<controller>/ public ActionResult Index(int id) { return RedirectToAction("temping","home",new { area = nameof(Areas.Admin) }); } } }

我的路线是:

https://localhost:44339/home/temping?area=Admin

在管理区域中,我有一个控制器的家庭名称

routes.MapRoute(
                name: "AdminArea",
                template: "{area:exists}/{controller=home}/{action=index}/{id?}");

有人可以帮助我吗?

0 个答案:

没有答案