0

Bootstrap 3 DateTimePickerから使用しようとしていますeonasdan。すべてが機能していますが、入力内の実際の日付をAngular ng-modelにバインドするという問題に遭遇しました。ピッカーを使用してデータを変更すると、「dp.change」イベントが機能し、入力内で日付が変更されますが、ng-model 更新検出を実現するには、スペースバーまたはその他のキーを押す必要があります。

コードの平和:

angularディレクティブを使用したJS:

(function () {
    'use strict';

    var module = angular.module('feedApp');

    module.directive('datetimepicker', [
        '$timeout',
        function ($timeout) {
            return {
                require: '?ngModel',
                restrict: 'EA',
                scope: {
                    options: '@',
                    onChange: '&',
                    onClick: '&'
                },
                link: function ($scope, $element, $attrs, controller) {
                    $($element).on('dp.change', function () {
                        //alert("change");
                        $timeout(function () {
                            var dtp = $element.data('DateTimePicker');
                            controller.$setViewValue(dtp.date());
                            $scope.onChange();
                        });
                    });

                    $($element).on('click', function () {
                        $scope.onClick();
                    });

                    controller.$render = function () {
                        if (!!controller) {
                            if (controller.$viewValue === undefined) {
                                controller.$viewValue = null;
                            }
                            else if (!(controller.$viewValue instanceof moment)) {
                                controller.$viewValue = moment(controller.$viewValue);
                            }
                            $($element).data('DateTimePicker').date(controller.$viewValue);
                        }
                    };

                    $($element).datetimepicker($scope.$eval($attrs.options));
                }
            };
        }
    ]);
})();

HTML:

<div style="max-width: 250px">
    <div class="input-group input-group-sm date">
        <input type="text" class="form-control" options="{format:'DD.MM.YYYY HH:mm', locale:'pl'}" datetimepicker ng-model="feed.reminderDateTime" />
        <span class="input-group-addon">
            <span class="glyphicon glyphicon-calendar"></span>
        </span>
    </div>
</div>

これを修正する方法はありますか?私は感謝するでしょう。

4

2 に答える 2

0

require ('datetimepicker');

Vue.directive('datetimepicker', {
    twoWay: true, //very important to bind the modeldata
    bind: function () {
        $(this.el).datetimepicker({
            format: 'YYYY/MM/DD',    //see moment for more valid date time formats
            useCurrent: false
        }).on('dp.change', function (value) {
            //todo: do the required changed to the value here 
        });
    },
    update: function (value) {
        $(this.el).val(value).trigger('dp.change');
    },
    unbind: function () {
        $(this.el).off().datetimepicker('destroy');
    }
});
于 2016-06-17T08:51:22.853 に答える
0

戻ってきたときに同様の問題がありました。参照するソースコードはありませんが、そのようなものだったことを覚えています。

あなたのng-modelはng-model="feed.reminderDateTime"

コントローラーでこれを行う必要があります$scope.feed = {reminderDateTime:''};

次に、そのような方法でアクセスできるはずです$scope.feed.reminderDateTime

それがどうなるか教えて

于 2016-05-04T12:39:49.080 に答える