如您所知,我们使用ui-router
将ui-view
呈现给父html
。根据{{3}}:
html
<!-- index.html -->
<body>
<div ui-view="filters"></div>
<div ui-view="tabledata"></div>
<div ui-view="graph"></div>
</body>
档案:
js
同样在$stateProvider
.state('report', {
views: {
'filters': { ... templates and/or controllers ... },
'tabledata': {},
'graph': {},
}
})
框架中,我们可以使用:
Ionic
有什么不同?