我在渲染模板时尝试访问父作用域:
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
}
}
});
我想知道我做错了吗?
由于