gpt4 book ai didi

AngularJS:如何观看选项卡选择?

转载 作者:行者123 更新时间:2023-12-03 22:19:04 25 4
gpt4 key购买 nike

我正在使用 angularjs 选项卡和 Pane 示例组件

angular.module('components', []).
directive('tabs', function() {
return {
restrict: 'E',
transclude: true,
scope: {},
controller: function($scope, $element) {
var panes = $scope.panes = [];

$scope.select = function(pane) {
angular.forEach(panes, function(pane) {
pane.selected = false;
});
pane.selected = true;
}

this.addPane = function(pane) {
if (panes.length == 0) $scope.select(pane);
panes.push(pane);
}
},
template:
'<div class="tabbable">' +
'<ul class="nav nav-tabs">' +
'<li ng-repeat="pane in panes" ng-class="{active:pane.selected}">'+
'<a href="" ng-click="select(pane)">{{pane.title}}</a>' +
'</li>' +
'</ul>' +
'<div class="tab-content" ng-transclude></div>' +
'</div>',
replace: true
};
}).
directive('pane', function() {
return {
require: '^tabs',
restrict: 'E',
transclude: true,
scope: { title: '@' },
link: function(scope, element, attrs, tabsCtrl) {
tabsCtrl.addPane(scope);
},
template:
'<div class="tab-pane" ng-class="{active: selected}" ng-transclude>' +
'</div>',
replace: true
};
})

SomePage.html
<tabs>
<pane title="Datos Generales">
<div ng-include src="'/resources/js/page/running/admin/templates/update-data.html'"></div>
</pane>
<pane title="Localización">
<div ng-include src="'/resources/js/page/running/admin/templates/update-location.html'"></div>
</pane>
<pane title="Datos Contacto">
<div ng-include src="'/resources/js/page/running/admin/templates/update-contacts.html'"></div>
</pane>
<pane title="Variantes">
<div ng-include src="'/resources/js/page/running/admin/templates/update-variants.html'"></div>
</pane>
</tabs>

在第二个 Pane 中有一个 GoogleMap。选择第二个 Pane 时,我想刷新谷歌地图。

我不知道如何在 Controller 中获得选定的 Pane 。我试过 $scope.panes但是是 undefined

最佳答案

以下三种方法可以解决您的问题:

  • 在 Controller 上定义一个方法,在选项卡元素的属性中指定该方法,在选项卡指令的隔离范围定义中使用“&”语法,以使指令能够在选择 Pane 时调用指定的方法。
  • 使用“selectedPane”属性在 Controller 范围内定义一个对象。使用 tabs 指令的隔离范围定义上的 '=' sytnax 来启用双向数据绑定(bind)。 Set this property whenever a pane is selected.
  • 有标签指令$emit一个事件,并让你的 Controller 使用 $on 监听它。

  • 更新 :@qopuir 询问有关选项 1 的更多详细信息。
    假设 Controller 方法如下所示:
    $scope.paneChanged = function(pane) {
    $scope.selectedPane = pane
    ...
    }

    在 tabs 元素上,我们将使用属性 pane-changed 指定此函数:
    <tabs pane-changed="paneChanged(selectedPane)">

    然后,tabs 指令可以使用 '&' 语法来调用这个方法:
    .directive('tabs', function() {
    return {
    restrict: 'E',
    transclude: true,
    scope: { paneChanged: '&' },
    controller: function($scope, $element) {
    var panes = $scope.panes = [];

    $scope.select = function(pane) {
    angular.forEach(panes, function(pane) {
    pane.selected = false;
    });
    pane.selected = true;
    $scope.paneChanged({selectedPane: pane});
    }

    关于AngularJS:如何观看选项卡选择?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14943644/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com