角度指令替换

时间:2014-04-02 15:11:51

标签: angularjs

有人可以告诉我为什么以下指令不起作用吗?

angular.module('app',[]).
directive('Test',function() {
  return {
    restrict : 'E',
    replace : true,
    template :'<h3>Test Test Test Test</h3>'
    };
  });

HTML

 <body ng-app="app">
    <Test></Test>
  </body>

如果我理解正确,我希望它在h3中显示Test Test Test Test,但它没有,任何想法为什么?

1 个答案:

答案 0 :(得分:2)

我不知道为什么,但如果你将你的指令命名为directive('test',function() {,那就可以了。