Ionic - multiple view on one page

I'm kind of a noob in Ionic, and I need help / advice to create something that sounds simple. I want to have one page, consisting of several contents, the idea is to have several views on one page, each of which is associated with a specific controller.

Here is my code:

index.html content:

   <ion-pane>
     <ion-nav-view></ion-nav-view>

     <ion-view ng-controller="FirstController">
       <ion-content>
       </ion-content>
     </ion-view>

     <ion-view ng-controller="ScdController">
       <ion-content>
       </ion-content>
     </ion-view>
  </ion-pane>

In my app.js app:

 angular.module('app', [])
 .controller('FirstController', function($scope) {
 })

 .controller('ScdController', function($scope) {
 });

In my config.routes.js:

angular.module('app')
.config(configure);

function configure($stateProvider){
  $stateProvider
    .state('first', {
      url: '/',
      templateUrl: 'templates/first.html',
      controller: 'FirstController'
    })
   .state('second', {
      url: '/',
      templateUrl: 'templates/second.html',
      controller: 'ScdController'
   });
 }

The templates are very simple:

first.html:

<div>first</div>

second.html:

<div>Second</div>

Now nothing is displayed.

What do you guys think?

Thank you for your help!

+4
source share
1 answer

- . https://github.com/angular-ui/ui-router/wiki/Multiple-Named-Views

:

HTML:

<ion-view title="">
   <ion-content scroll="true">
     <div ui-view="first"></div>
     <div ui-view="second"></div>
   </ion-content>
</ion-view>

JS:

angular.module('app')
 .config(function($stateProvider) {
   $stateProvider
    .state({
       name : 'multiple-views'
       views: {
        'first': {
           url: '/',
           templateUrl: 'templates/first.html',
           controller: 'FirstController'
         },
        'second': {
           url: '/',
           templateUrl: 'templates/second.html',
           controller: 'ScdController'
         }
       }
    });

: http://plnkr.co/edit/kZZ4KikwLITOxR5IGltr?p=preview

+4

Source: https://habr.com/ru/post/1615628/