1

我有用于 Karaf(或 JBoss Fuse)主页的 Hawtio Web 控制台,并且我还有一个 AngularJS 应用程序作为 Hawtio 中的插件。是否可以更改 Hawtio 中内置(或打包)的 AngularJS 库的版本?我需要 AngularJS 的更新功能(ng-repeat-start-end),它在部署为 Hawtio 插件时不起作用。

4

1 回答 1

1

hawtio 目前有点卡在 1.1.5 上,因为我们有一个启用仪表板功能的补丁。但是,您可以通过 ng-include 和模板轻松实现相同的功能:

<script type="text/ng-template" id="myTemplate.html">
    <div>
        <header>{{item.foo}}</header>
        <footer>{{item.bar}}</footer>
    </div>
</script>
<div ng-repeat="item in items" ng-include="'myTemplate.html'"></div>

请注意 ng-include 指令配置中的 ',否则您会点击ng-include not working with script type="text/ng-template"

于 2014-10-21T22:47:45.037 回答