我有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'}}
) ,效果很好