AngularJS自定义组件与NGSWITCH指令汇编顺序



有以下代码段:

<my-header></my-header>
<div ng-switch="$ctrl.page">
        <div ng-switch-when="1"><component1></component1></div>
        <div ng-switch-when="2"><component2></component2></div>
        <div ng-switch-when="3"><component3></component3></div>
</div>

我想要该组件 myheader 将在 ngswitch 指令采取行动之前构造。现在 component1 是在 myheader 之前构建的。

路由表示以下代码:

$stateProvider
  .state({
    name: 'myApp',
    url: '/',
    component: 'loader',
  })
  .state({
    name: 'myApp.pages',
    url: 'pages/{id:int}',
    component: 'loader'
  });
$urlRouterProvider.otherwise('/pages/1');

您可以通过在 myheader 指令中的链接函数中公开控制器来实现这一目标。

这样,您可以轻松地将变量添加到控制器中,并使用 ng-if 来控制NG-SWitch Div的可见性。在此处检查代码段。

啊,别忘了将 ng-cloak 添加到包含 ng-switch 指令的div。

angular
        .module('app', [])
        .controller('TestController', function($scope) {
            this.page = 1;
        })
        .directive('myHeader', function () {
            return {
                link: function (scope, element, attrs) {
                    // With element.controller() we can reach the controller that is wrapping our directive. Then, we can simply set the headerIsLoaded variable to true.
                    element.controller().headerIsLoaded = true;
                },
                scope: true,
                templateUrl: 'my-header.html'
            }
        });
<div ng-controller="TestController as ctrl">
    <my-header></my-header>
    <!-- Add a visual feedback so user knows the components are being loaded -->
    <div ng-if="!ctrl.headerIsLoaded">
        Loading...
    </div>
    <!-- If ctrl.headerIsLoaded is set to true, the ng-switch will appear -->
    <div ng-if="ctrl.headerIsLoaded"
         ng-cloak>
        <div ng-switch="ctrl.page">
            <div ng-switch-when="1">
                Page 1
            </div>
            <div ng-switch-when="2">
                Page 2
            </div>
            <div ng-switch-when="3">
                Page 3
            </div>
        </div>
    </div>
</div>

相关内容

  • 没有找到相关文章

最新更新