7
Jak wiadomo w kanciastym ui-router
używamy ui-view
do renderowania html
do rodzica html
. Według this:Jaka jest różnica między ui-view w angularjs i ion-nav-view w ionical
<!-- index.html -->
<body>
<div ui-view="filters"></div>
<div ui-view="tabledata"></div>
<div ui-view="graph"></div>
</body>
js
file:
$stateProvider
.state('report', {
views: {
'filters': { ... templates and/or controllers ... },
'tabledata': {},
'graph': {},
}
})
Również w Ionic
ramach możemy wykorzystać to:
<ion-nav-view name="filters"></ion-nav-view>
Jaki jest diference?