1

我将我的项目从 angular 1.0.8 更新到 1.2.0,像这样简单的东西对我不起作用:

<div data-ng-include="'partial1.html'" data-ng-controller="MainCtrl"></div>

如何在 partial1.html 中使用 MainCtrl 范围内的变量?

此示例使用 Angular 版本 1.8.0 可以正常工作:example1

但是,使用 1.2.0 版本不起作用:example2

提前致谢。

4

1 回答 1

0

这看起来像是1.2 中的一个已知问题ng-include,当与其他指令一起使用时会导致失败。

试试这个:

<div ng-controller="MainCtrl">
  <div ng-include="'partial1.html'"></div>
</div>
于 2013-11-13T21:51:07.963 回答