根据angular material dialog demo,自定义对话框窗口可以包含html模板和注入了$scope
的控制器。
此控制器$scope
与包含控制器之间的关系是什么?
换句话说,如何将数据从顶级传递到例如$scope.status
" dialog.tmpl.html"
<script type="text/ng-template" id="dialog1.tmpl.html">
<p>
{{status}}
</p>
</script>
似乎不起作用。