1.20 rc2 を使用してディレクティブを実装しようとしています:
var directives = angular.module('directives', ['controllers']);
directives.directive("drink", function()
{
return
{
template: '<div>{{flavor}}</div>',
link: function(scope){
scope.flavor = "cherry";
}
}
});
ディレクティブはメインの JS ファイルで呼び出されます
var comsumerApp = angular.module('comsumerApp', ['ngRoute','controllers', 'services', 'directives']);
すべてのコントローラーはサービスと同じように機能しますが、これを実行しようとすると次のエラーが発生します。
"Uncaught SyntaxError: Unexpected token: "
それから私は
$injector:modulerr エラー。
「drink」ディレクティブをコメントアウトすると、このエラーが停止するため、明らかに : などと関係があります。
誰でもこの問題に光を当てることができますか?私は完全に迷っています。
ありがとう。