每当我启用不同的复选框字段(将其设置为 true)时,我都需要在实体的 EDIT 视图中更新“日期时间”字段值。
NGA 字段
nga.field('launchDate', 'datetime')
.label('Launch date')
nga.field('active', 'boolean')
.template('<active-game-field field="::field" entity="::entity" game="entry"></active-game-field>')
问题是,在我为“活动”模板创建的指令中,我必须做一些逻辑,然后我想从那里修改“launchDate”的前端元素值。
有没有一种方法可以轻松地做到这一点,例如使用像'::fields'这样的属性,将表单的所有字段传递给指令?
现在我可以通过 require: '^form' 或 '::entity' 访问这些字段,但这些值仅针对 JSON 请求/响应进行修改,而不是前端字段上的值。
该指令
module.exports = ['ngDialog', function activeGameField(ngDialog) {
return {
require: '^form',
restrict: 'E',
scope: {
'field': '&',
'game': '&',
'entity': '&'
},
link: function (scope, element, attrs, formCtrl) {
scope.updateLaunchDate = function (elem) {
document.activeElement.blur();
if (elem.value == true) {
ngDialog.openConfirm({
template: '\
<p>Do you want to update the launch date of this game to now?</p>\
<div class="ngdialog-buttons">\
<button type="button" class="ngdialog-button ngdialog-button-secondary" ng-click="confirm(false)">No</button>\
<button type="button" class="ngdialog-button ngdialog-button-primary" ng-click="confirm(true)">Yes</button>\
</div>',
showClose: false,
closeByDocument: false
}).then(function (value) {
if (value) {
var date = new Date(Date.now());
scope.game().values.launchDate = date; // JSON value modified properly after clicking on save entity, but not the frontend value. In this callback I would like to do something like\'elem.value = date;' but for the 'launchDate' element instead if 'this' (active checkbox element).
}
});
}
}
},
template:
'<input type="checkbox" ng-model="value" id="active" name="active" class="form-control ng-pristine ng-untouched ng-valid" \
ng-click="updateLaunchDate(this)">'
};
提前致谢。