我们如何在angularjs中切换两个模块

时间:2015-01-14 13:16:16

标签: angularjs

我的应用程序中有两个模块。要求是我需要从一个模块导航到另一个模块。有可能吗?

这两个模块是sol用户和sol cutomer是2个不同的模块。这样它不起作用?难道我做错了什么?任何其他选择请

我正在使用的代码如下所示,但它没有显示任何内容

'use strict';
(function () {

  angular.module('sol.user')
  .config(StateConfig);
  StateConfig.$inject = ['$stateProvider', '$urlRouterProvider'];

  alert("user-state");
  function StateConfig($stateProvider, $urlRouterProvider) {
      $urlRouterProvider.when('/customer/search', '/user');
       $stateProvider
          .state('home.user',{
            url:'/user',
            controller:'sol.user.UserController',
            controllerAs: 'userCtrl'
        })
        .state('home.search', {
                url: '/customer/search',
                templateUrl: 'views/customer/search/search.html',
                controller: 'sol.customer.search.SearchCtrl',
                controllerAs: 'searchCtrl'
            })




  }
})();

0 个答案:

没有答案