如何在 ngSwitch 中有一些公共节点?
<div ng-controller="MyCtrl">
<div ng-repeat="widget in widgets" ng-switch="" on="widget.foo">
<h1>Test</h1>
<p ng-switch-when="bar">Lorem ipsum</p>
<small ng-switch-when="baz">Lorem ipsum</small>
<footer>common footer</footer>
</div>
</div>
switch 元素呈现为模板的最后一个子元素。如果有更好的方法有什么想法吗?