0

更新我已经恢复到包含任何 ui-router 之前的状态


我遇到了一个我无法解决的可怕的 $injector 错误,我已经恢复了并且需要知道如何简单地包含 ui-router 并添加一个配置函数,该函数将简单地将用户路由到加载 /login 的 /login .html

我以前做过很多次,只是这次不行。

(function() { "use strict";

    var app = angular.module('tickertags', [
        'infinite-scroll',
        'apiFactory',
        'scopeFactory',
        'tagFactory',
        'tickerFactory',
        'timeSpanFactory',
        'overlayDirective',
        'searchPopoverDirectives',
        'notificationDirectives',
        'platformHeaderDirectives',
        'controlHeaderDirectives',
        'viewHeaderDirectives',
        'alertsPanelController',
        'alertPanelDirectives',
        'tickersPanelDirectives',
        'tickersSelectFactory',
        'tagsPanelDirectives',
        'tagDetailsFactory',
        'tagHoverDirective',
        'tagSearchDirective',
        'tagsFilterDirective',
        'focusMeDirective',
        'chartHeaderController',
        'chartHeaderDirectives',
        'chartPanelDirective',
        'chartIQDirective',
        'socialMediaController',
        'socialMediaDirectives',
        'socialMediaFactory'
    ])
    .controller('DashCtrl', Controller);

    /*
        I WANT TO ADD THE CONFIG HERE...
        /login = login.html
    */

    Controller.$inject = [
        '$scope',
        '$rootScope',
        'ScopeFactory',
        'TickerFactory'];

    function Controller($scope,
                        $rootScope,
                        ScopeFactory,
                        TickerFactory) {

        /** Init DashCtrl scope */
        /** ----------------------------------------------------------------- */
        var vs          = $scope;
            vs.showNote = true,
            vs.mouseX   = '',
            vs.mouseY   = '';
            ScopeFactory.saveScope('root', vs);

        /** Detect if a tagHover has been shown and ready bodyClick to close */
        vs.$on('tagHoverOpen', function(events,data) {
            vs.bodyClick = function() {
                $rootScope.$broadcast('bodyClick');
            };
        });

        /** Remove eventListener after tagHover is closed */
        vs.$on('destroy', function() {
            vs.bodyClick = angular.noop();
        });

        /** Get and store all tickers, eventually just first 100 */
        getAllTickers();

        function getAllTickers() {
            TickerFactory.getTickers();
        };

    };

})();
4

2 回答 2

1

您需要ui.router在应用程序模块中添加模块才能使用角度ui.router功能。

代码

var app = angular.module('tickertags', [
    //..other modules here.
    'socialMediaFactory',
    'ui.router' //<--added it
])
于 2015-05-28T19:19:43.120 回答
0

如果您已经使用 yeoman 为您的项目创建了框架(这始终是引导您的项目并避免编写大量样板代码的好主意),那么您的项目中就会有一个现有的 bower 和 grunt 配置。

从那里开始,您可以按照以下步骤将项目中的 ngRouter 替换为 ui-router

  1. 执行bower install angular-ui-router --save

  2. 通过替换修改您的 index.html

<div ng-view=""></div> with <div ui-view=""></div>

  1. 更新您的 app.js 以包含 ui-router 模块和针对不同状态的适当配置

这是一个示例配置:

angular
  .module('myApp', [
    'ui.router'
  ])
  .config(function ($stateProvider, $urlRouterProvider) {
    // For any unmatched url, send to /
    $urlRouterProvider.otherwise("/");

    $stateProvider
      .state('/', {
        url:"/",
        templateUrl: '../modules/main/main.html',
        controller: 'mainCtrl'
      })
      .state('about', {
        url:"/about",
        templateUrl: '../modules/about/about.html',
        controller: 'aboutCtrl'
      });
  });

如果您为项目配置了 grunt 和 bower,则依赖项angular-ui-router.js将自动添加到您的 index.html

于 2015-05-30T16:53:20.883 回答