我有一个这样的示例 HTML,其中每个 div 代表大量的 html 代码。我需要将一段 html 代码附加到已经附加到一个 div 的控制器上。第一个和最后一个 div 代表相同的业务功能并且紧密耦合,因此我不能使用服务来共享状态。我正在寻找使用角度或 ui 路由以外的解决方案。
<div ng-controller='newController'>
<label>{{greeting}}</label>
</div>
<div>
<!-- Another Big HTML element -->
</div>
<div>
<!-- This is some popup dialog code which should be attached to the scope of newController -->
<label>{{greeting}}</label>
</div>