流星 angular "HTML template does not exists!"

meteor angular "HTML template does not exists!"

我对 meteor 比较陌生,但对 AngularJS 已经有了一些经验。 现在我已经用命令npm install -g generator-angular-meteor安装了"angular-meteor-generator"。 到目前为止一切正常,但是应用程序启动后,我收到错误消息

client/components/toolbar/toolbar.view.ng.html - HTML template does not exists!

我的文件夹结构如下所示:

和我的工具栏指令:

'use strict'
angular.module('smashoArtikelVerwaltungApp')
.directive('toolbar', function() {
  return {
    restrict: 'AE',
    templateUrl: 'client/components/toolbar/toolbar.view.ng.html',
    replace: true
  };
});

我没有对生成的代码进行任何更改。我能做什么?

在尝试了很长时间来解决问题之后,我想出了以下解决方案: 降级仪表或版本:

curl https://install.meteor.com/ | sed 's/1.4.0.1/1.3.3.1/' | sh

简单,快速,但不优雅。