7
Come sapete nell'angolare ui-router
usiamo per il rendering di html
per il genitore html
. Secondo this:Qual è la differenza tra ui-view in angularjs e ion-nav-view in ionico
<!-- index.html -->
<body>
<div ui-view="filters"></div>
<div ui-view="tabledata"></div>
<div ui-view="graph"></div>
</body>
js
di file:
$stateProvider
.state('report', {
views: {
'filters': { ... templates and/or controllers ... },
'tabledata': {},
'graph': {},
}
})
Anche in Ionic
quadro possiamo usare questa:
<ion-nav-view name="filters"></ion-nav-view>
Qual è la diference?