如何在流星中声明一个 angular 控制器?

How to declare an angular controller in meteor?

几个月以来,我一直在 angular 的世界中,我总是将我的控制器实例化为:

首先我创建 angular.module:

angular.module("dummyApp", ['some-directive']).config(...).run(...);

我可以在此模块中创建控制器后:

angular.module("dummyApp").controller("dummyCtrl", function($scope) { 
   // some logic here
});

(对应的html已经到位)

现在,我从 meteor 和 angular 开始。当我尝试声明一个控制器时,错误是(我知道这意味着什么):

Uncaught Error: [$injector:nomod] Module 'dummyApp' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.

我到底如何在 meteor 中做到这一点?我尝试了这个和很多具有相同结果的变体。可能是我不使用 $meteor?语法 ControllerAs?

让我很沮丧的是,如此简单的事情却耽误了我的时间。

更新

Index.html

<body ng-app="EyEnsure">
  <div class="container">
<!-- Navbar goes here -->
<!-- Navbar goes here -->
<nav>
  <div class="nav-wrapper">
    <a href="#!" class="brand-logo">Logo</a>
    <a href="#" data-activates="mobile-demo" class="button-collapse"><i class="material-icons">menu</i></a>
    <ul class="right hide-on-med-and-down">
      <li><a ui-sref="Map">Map</a></li>
    </ul>
  </div>
</nav>

<!-- Page Layout here -->
<div class="section card-panel teal lighten-2">
  <!-- Aquí se insertan las vistas -->
  <div ui-view></div>
</div>
<!-- end layout -->

Main.js:

angular.module("EyEnsure", ['angular-meteor', 'ui.router', 'uiGmapgoogle-maps'])
    .config(function($stateProvider, $urlRouterProvider) {
        $urlRouterProvider.otherwise("/");
        $stateProvider
            .state('Home', {
                url: "/",
                template: UiRouter.template('main.html')
            })
            .state("Map", {
                url: "/map",
                template: UiRouter.template('map.html'),
                //controller: 'mapCtrl', // I tried this..
                //controllerAs: 'map'
            })
    }); 

查看我想显示的位置 google 地图:

<template name="map.html">

<div ng-controller="mapCtrl">-->
<h1 class="center-align">Map to EyEnsure</h1>
{{tittle}}
<div class="party-details-maps">
  <div class="angular-google-map-container">
    <ui-gmap-google-map center="party.location || map.center"
                        events="map.events" zoom="map.zoom">
    </ui-gmap-google-map>
  </div>
</div>
</div>

MapController.js:

angular.module("EyEnsure")
    .controller('mapCtrl', function($scope) {
        $scope.tittle = "Hello!";
        $scope.map = {
            center: {
                latitude: 45,
                longitude: -73
            },
            zoom: 8,
            events: {}
        };
    });

为了以防万一,我的包安装在 .meteor/packages:

meteor-platform
urigo:angular
angularui:angular-ui-router
netanelgilad:ng-cordova
angular:angular-material
materialize:materialize
urigo:angular-ui-router
angularui:angular-google-maps

问题不在于如何声明 angular 控制器,而是流星如何加载文件。

我创建 angular 应用程序的 js 管理器位于错误的目录中。所以我输入 clint/lib.

原因是here.