AngularJs指令模板可以访问父作用域吗?

时间:2014-11-13 21:56:32

标签: angularjs

我在渲染模板时尝试访问父作用域:

mymodule.directive('mymodule', function() {
   return {
      restrict: 'E',
      template : function(scope) {
           return '<p>' + scope.data + '</p>'  // scope.data is from the parent scope but I got undefined here
      }
   }
});

我想知道我做错了吗?

由于

0 个答案:

没有答案