Chcę mieć widok UserAdmin z rejestracją konta, klasą UserProfile i klasą tożsamości. Używam MVC5 z domyślnym uwierzytelnianiem indywidualnym. Używam interfejsu użytkownika do routingu. Widziałem wiele przykładów przy użyciu viewmodel do przekazania wielu modeli do jednego widoku cshtml. Ale potrzebuję bardziej złożonej konfiguracji. Stworzyłem makietę tego, czego szukam. Jaki jest najlepszy sposób na zrobienie tego. Sposób korzystania z routingu kątowego w celu zagnieżdżenia 3 modeli maszynki do golenia mvc
Oto co moja konfiguracja wygląda
ui trasy
// Default route
$urlRouterProvider.otherwise('/Document');
// Application Routes States
$stateProvider
.state('app', {
abstract: true,
controller: "CoreController",
resolve: {
_assets: Route.require('icons', 'toaster', 'animate')
}
})
.state('app.document', {
url: '/Document',
templateUrl: Route.base('Document/Index'),
resolve: {}
})
.state('app.register', {
url: '/Register',
templateUrl: Route.base('Account/Register'),
resolve: {}
}).state('app.applicationUser', {
url: '/ApplicationUser',
templateUrl: Route.base('ApplicationUsers/Index'),
resolve: {}
}).state('app.role', {
url: '/Role',
templateUrl: Route.base('Role/Index'),
resolve: {}
}).state('app.roleCreate', {
url: '/RoleCreate',
templateUrl: Route.base('Role/Create'),
resolve: {}
}).state('app.userProfile', {
url: '/UserProfile',
templateUrl: Route.base('UserProfiles/Index'),
resolve: {}
}).state('app.userProfileCreate', {
url: '/UserProfileCreate',
templateUrl: Route.base('UserProfiles/Create'),
resolve: {}
}).state('app.login', {
url: '/Login',
templateUrl: Route.base('Account/Login'),
resolve: {}
});
}
_Layout.cshtml
<div ui-view class="app-container" ng-controller="CoreController">@RenderBody()</div>
Nawigacja
<li>
<a ui-sref="app.userProfile" title="Layouts" ripple="">
<em class="sidebar-item-icon icon-pie-graph"></em>
<span>User Profile</span>
</a>
</li>
Nie mam problemu z używaniem modałów dla widoków Utwórz, Szczegóły, Edytuj, jeśli jest to łatwiejsze rozwiązanie. Jednak nie wiem, jak przekazać wybrany identyfikator z jego właściwości do modalu.
pozwól mi spojrzeć. – texas697
@ texas697 to ci się udało? – noahdotgansallo
Próbuję zobaczyć, jak można to zrobić z ui-routerem zamiast z ngRoute. W rzeczywistości jest to zagnieżdżona, zagnieżdżona sytuacja widokowa z powodu mojej konfiguracji routingu – texas697