Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 NopCommerce 2.1 中编写插件。我想知道是否有一种方法可以强制插件中的视图页面使用 _AdminLayout.cshtml 而不是 _Root.cshtml?可能吗?
谢谢先进
简而言之,答案是肯定的......但我假设你也想知道如何:)
@model MyModel @{ Layout = "~/admin/Views/Shared/_AdminLayout.cshtml"; } <div>My HTML</div>
我对 nopCommerce 很陌生,还不知道身份验证和授权是如何工作的,所以我不知道使用管理布局的含义。如果您的插件仅用于管理站点,我认为这很好。