使用 AngularJS,我想使用 ng-include 使我的代码通用。
所以这是我的问题:
我希望 ng-include 中使用的“ang-attribute.html”文件尽可能通用,为此我想在 html 之外获取属性名称。
像这样:
<div data-field-name="display_name">
<div ng-include="'ang-attribute.html'"></div>
</div>
在我的 html 文件中,我想使用数据字段名称,然后以不同的值再次使用它。
我试图通过 DOM 获取它......但找不到这样做的方法。
所以在我的 ng-include html 文件中,我有以下行:
<div ng-controller="attributeCtrl">
<div class="my-profile-constant-text">{{displayAttribute}}:</div>
....
</div>
也许有一种方法可以将构造函数传递给控制器,然后我可以将我的数据字段名称传递给它?或者任何其他解决方案?
谢谢!