1

我有actionButtons指令:

function actionButtons(){
    'use strict';
    return {
        scope: {},
        restrict: 'AE',
        bindToController: {
            itemId: '@',
            itemDescription: '@',
            actionsText: '@',
            previewAction: '&',
            previewText: '@',
            editAction: '&',
            editText: '@',
            removeAction: '&',
            removeText: '@'
        },
        controller: ActionButtonsController,
        controllerAs: 'actionButtonsCtrl',
        templateUrl: 'src/views/directives/actionButtons.html'
    };
}

ActionButtonsController控制器:

/**
 *
 * @constructor
 */
function ActionButtonsController() {
    'use strict';
    var viewModel = this;
    //not important assertions
    }
    /**
     *
     * @type {boolean}
     */
    viewModel.hasItemDescription = typeof viewModel.itemDescription === 'string' &&
        viewModel.itemDescription.length > 0;
    /**
     *
     * @type {string}
     */
    viewModel.previewText = viewModel.previewText || 'preview';
    /**
     *
     * @type {string}
     */
    viewModel.editText = viewModel.editText || 'edit';
    /**
     *
     * @type {string}
     */
    viewModel.removeText = viewModel.removeText || 'remove';
    /**
     *
     * @type {string}
     */
    viewModel.actionsText = viewModel.actionsText || 'Actions';

    viewModel.preview = function() {
        viewModel.previewAction();
    };

    viewModel.edit = function() {
        viewModel.editAction();
    };

    viewModel.remove = function() {
        viewModel.removeAction();
    };
}

他的模板的一部分,带有按钮:

<div class="visible-xs-block btn-group" data-dropdown>
<button class="btn btn-block btn-primary" id="{{::(actionButtonsCtrl.itemId)}}" type="button"
        data-dropdown-toggle aria-haspopup="true">
    {{actionButtonsCtrl.actionsText}} <span class="sr-only" data-ng-if="::actionButtonsCtrl.hasItemDescription">
        for {{::(actionButtonsCtrl.itemDescription)}}</span></button>
</div>

这就是我在应用程序中的称呼:

<td class="col-md-3 col-xs-3 text-center">
    <div data-action-buttons
         data-item-id="{{author.id + '_' + author.name + '_' + author.surname}}"
         data-item-description="{{author.name + ' ' + author.surname}}"
         data-preview-action="authorCtrl.preview(author)"
         data-edit-action="authorCtrl.edit(author)"
         data-remove-action="authorCtrl.remove(author)"
        ></div>
</td>

问题是:正如您从控制器代码中看到的那样,例如actionsText不需要,如果不存在,它将被设置为Actions. itemDescription也不是必需的。但是,如果我指定itemDescription它在 HTML DOM 中一直可见,但Actions对我来说表现得很奇怪:它设置为默认值Actions,但在 HTML DOM 中不可见。这两者之间的区别在于明确地actionsText绑定this在控制器的代码中 - 但我认为这是默认行为,bindToController当我想在不存在值的情况下设置默认值时,我应该这样做。此外,当我调试它时(例如通过调用其中一个函数),actionsText它具有undefined价值,尽管如果我在创建它时对其进行调试,它已经设置了一个默认值Actions价值。它不适用于一次性绑定 (with ::) 和正常情况。也许它与scope: {}指令的代码有关,但我无法弄清楚,我希望能得到你的帮助 - 提前谢谢你。PS我尝试viewModel从控制器返回变量 - 它没有帮助。PS 2如果actionsText指定(as data-actions-text={{'Something'}}) ,效果很好

4

1 回答 1

1

您正在使用bindToController它间接地将范围值添加到控制器this上下文。但是这个问题正在发生,因为您在表达式中使用@了符号。bindToController

每当有controllerAs, bindToController& 范围的情况下,@角度处理这个东西的方式就完全不同了。

实际上,当您在具有&角度的@隔离作用域内使用作用域变量时,请在该值上给出的表达式上使用手表,相同的角度代码controllerAsbindToController$observeattribute

该解决方案将用于执行所有将使用隔离范围值$timeout获取的分配。因为在计算表达式@后,值会在下一个摘要循环周期中绑定。$observe

代码

function ActionButtonsController() {
    'use strict';
    var viewModel = this;
    $timeout(function() {
        viewModel.hasItemDescription = typeof viewModel.itemDescription === 'string' &&
            viewModel.itemDescription.length > 0;

        viewModel.previewText = viewModel.previewText || 'preview';

        viewModel.editText = viewModel.editText || 'edit';

        viewModel.removeText = viewModel.removeText || 'remove';

        viewModel.actionsText = viewModel.actionsText || 'Actions';
    })

    viewModel.preview = function() {
        viewModel.previewAction();
    };

    viewModel.edit = function() {
        viewModel.editAction();
    };

    viewModel.remove = function() {
        viewModel.removeAction();
    };
};

这是详细版本答案

于 2015-07-25T17:39:10.387 回答