模型与模型之间的 Angular UI 引导程序日期不匹配日期选择器 [英] Angular UI bootstrap date mismatch between model & datepicker

查看:18
本文介绍了模型与模型之间的 Angular UI 引导程序日期不匹配日期选择器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

看到这个 Plunkr :

http://plnkr.co/edit/gSTqtxfcEjrYLt1mIzVD?p=preview

我从一个例子中得到了这个.在 https://angular-ui.github.io/bootstrap/ 给出演示日期选择器.

在标题我的日期中,当我从日期选择器中选择日期 2016-06-15 时,绑定的模型将日期显示为 2016-06-14.所以总是有 1 天的不匹配.

这篇文章视图和视图之间的角度引导日期选择器不匹配型号建议对视图应用日期过滤器.

然而,这只是一个补丁,因为当我发布到 api 时,我仍然在服务器上收到 2016-06-14.

这是一个错误还是有一些解决方法?

HTML

<html ng-app="ui.bootstrap.demo"><头><script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.js"></script><script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular-animate.js"></script><script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-1.3.3.js"></script><script src="example.js"></script><link href="//netdna.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="样式表"><身体><风格>.full 按钮跨度 {背景色:柠檬绿;边框半径:32px;颜色:黑色;}.部分按钮跨度{背景颜色:橙色;边框半径:32px;颜色:黑色;}</风格><div ng-controller="DatepickerPopupDemoCtrl"><pre>选择的日期是:<em>{{dt |日期:'fullDate' }}</em></pre><h4>弹出窗口</h4><div class="row"><div class="col-md-6"><p class="输入组"><input type="text" class="form-control" uib-datepicker-popup="{{format}}" ng-model="dt" is-open="popup1.opened" datepicker-options="dateOptions" ng-required="true" close-text="Close" alt-input-formats="altInputFormats"/><span class="input-group-btn"><button type="button" class="btn btn-default" ng-click="open1()"><i class="glyphicon glyphicon-calendar"></i></button></span></p>

<div class="col-md-6"><p class="输入组"><input type="text" class="form-control" uib-datepicker-popup ng-model="dt" is-open="popup2.opened" datepicker-options="dateOptions" ng-required="true"close-text="关闭"/><span class="input-group-btn"><button type="button" class="btn btn-default" ng-click="open2()"><i class="glyphicon glyphicon-calendar"></i></button></span></p>

<br/><h2>我的日期日期是:{{dt1 |日期:'dd/MM/yyyy'}}实际日期是:{{dt1}}<div class="col-md-6"><p class="输入组"><input type="text" class="form-control" uib-datepicker-popup ng-model="dt1" is-open="popup3.opened" datepicker-options="dateOptions" ng-required="true"close-text="关闭"/><span class="input-group-btn"><button type="button" class="btn btn-default" ng-click="open3()"><i class="glyphicon glyphicon-calendar"></i></button></span></p>

<input type="text" class="form-control" ng-model="dt1 | date"/>

<div class="row"><div class="col-md-6"><label>格式:<span class="muted-text">(手动替代<em>{{altInputFormats[0]}}</em>)</span></label><select class="form-control" ng-model="format" ng-options="f for f informats"><option></option></select>

<小时/><button type="button" class="btn btn-sm btn-info" ng-click="today()">今天</button><button type="button" class="btn btn-sm btn-default" ng-click="setDate(2009, 7, 24)">2009-08-24</button><button type="button" class="btn btn-sm btn-danger" ng-click="clear()">清除</button><button type="button" class="btn btn-sm btn-default" ng-click="toggleMin()" uib-tooltip="今天限制之后">最小日期</button>

</html>

脚本:

angular.module('ui.bootstrap.demo', ['ngAnimate', 'ui.bootstrap']);angular.module('ui.bootstrap.demo').controller('DatepickerPopupDemoCtrl', function ($scope) {$scope.today = function() {$scope.dt = new Date();};$scope.today();$scope.clear = function() {$scope.dt = null;};$scope.inlineOptions = {自定义类:getDayClass,minDate: 新日期(),showWeeks: 真};$scope.dateOptions = {日期禁用:禁用,formatYear: 'yy',maxDate: 新日期(2020, 5, 22),minDate: 新日期(),起始日:1};//禁用周末选择功能禁用(数据){var date = data.date,模式=数据.模式;返回模式 === '天' &&(date.getDay() === 0 || date.getDay() === 6);}$scope.toggleMin = function() {$scope.inlineOptions.minDate = $scope.inlineOptions.minDate ?空:新日期();$scope.dateOptions.minDate = $scope.inlineOptions.minDate;};$scope.toggleMin();$scope.open1 = function() {$scope.popup1.opened = true;};$scope.open2 = function() {$scope.popup2.opened = true;};$scope.open3 = function() {$scope.popup3.opened = true;};$scope.setDate = 函数(年、月、日){$scope.dt = 新日期(年、月、日);};$scope.formats = ['dd-MMMM-yyyy', 'yyyy/MM/dd', 'dd.MM.yyyy', 'shortDate'];$scope.format = $scope.formats[0];$scope.altInputFormats = ['M!/d!/yyyy'];$scope.popup1 = {打开:假};$scope.popup2 = {打开:假};$scope.popup3 = {打开:假};var 明天 = 新日期();明天.setDate(tomorrow.getDate() + 1);var afterTomorrow = new Date();afterTomorrow.setDate(tomorrow.getDate() + 1);$scope.events = [{日期:明天,状态:'满'},{日期:明天之后,状态:'部分'}];函数 getDayClass(data) {var date = data.date,模式=数据.模式;如果(模式 === '天'){var dayToCheck = new Date(date).setHours(0,0,0,0);for (var i = 0; i < $scope.events.length; i++) {var currentDay = new Date($scope.events[i].date).setHours(0,0,0,0);if (dayToCheck === currentDay) {返回 $scope.events[i].status;}}}返回 '​​';}});

解决方案

我通过在模型中添加这个来解决它.

ng-model-options="{timezone: 'UTC'}"

在此处查看更新的 plunkr.

http://plnkr.co/edit/x0WLHNG7l5VBRU5tN8Q1?p=preview

See this Plunkr :

http://plnkr.co/edit/gSTqtxfcEjrYLt1mIzVD?p=preview

I have taken this from an eg. given at https://angular-ui.github.io/bootstrap/ for a demo of date picker.

In the heading, My Date when I am selecting a date 2016-06-15 from the date picker, the model which is bound shows date as 2016-06-14. so always there is a mismatch of 1 day.

This post angular bootstrap datepicker mismatch between view and model suggested to apply date filter to the view.

However, it is only a patch up as when I am posting to an api, I still get 2016-06-14 on the server.

Is this a bug or is there some work around for it ?

HTML

<!doctype html>
<html ng-app="ui.bootstrap.demo">
  <head>
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.js"></script>
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular-animate.js"></script>
    <script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-1.3.3.js"></script>
    <script src="example.js"></script>
    <link href="//netdna.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
  </head>
  <body>

<style>
  .full button span {
    background-color: limegreen;
    border-radius: 32px;
    color: black;
  }
  .partially button span {
    background-color: orange;
    border-radius: 32px;
    color: black;
  }
</style>
<div ng-controller="DatepickerPopupDemoCtrl">
    <pre>Selected date is: <em>{{dt | date:'fullDate' }}</em></pre>

    <h4>Popup</h4>
    <div class="row">
      <div class="col-md-6">
        <p class="input-group">
          <input type="text" class="form-control" uib-datepicker-popup="{{format}}" ng-model="dt" is-open="popup1.opened" datepicker-options="dateOptions" ng-required="true" close-text="Close" alt-input-formats="altInputFormats" />
          <span class="input-group-btn">
            <button type="button" class="btn btn-default" ng-click="open1()"><i class="glyphicon glyphicon-calendar"></i></button>
          </span>
        </p>
      </div>

      <div class="col-md-6">
        <p class="input-group">
          <input type="text" class="form-control" uib-datepicker-popup ng-model="dt" is-open="popup2.opened" datepicker-options="dateOptions" ng-required="true" close-text="Close" />
          <span class="input-group-btn">
            <button type="button" class="btn btn-default" ng-click="open2()"><i class="glyphicon glyphicon-calendar"></i></button>
          </span>
        </p>
      </div>

      <br/>
      <h2> My Date</h2>
      Date is : {{dt1 | date : 'dd/MM/yyyy'}}
Real Date is : {{dt1}}
      <div class="col-md-6">
        <p class="input-group">

          <input type="text" class="form-control" uib-datepicker-popup ng-model="dt1" is-open="popup3.opened" datepicker-options="dateOptions" ng-required="true" close-text="Close" />
          <span class="input-group-btn">
            <button type="button" class="btn btn-default" ng-click="open3()"><i class="glyphicon glyphicon-calendar"></i></button>
          </span>
        </p>
      </div>

      <input type="text" class="form-control" ng-model="dt1 | date"  />

    </div>
    <div class="row">
      <div class="col-md-6">
        <label>Format: <span class="muted-text">(manual alternate <em>{{altInputFormats[0]}}</em>)</span></label> <select class="form-control" ng-model="format" ng-options="f for f in formats"><option></option></select>
      </div>
    </div>

    <hr />
    <button type="button" class="btn btn-sm btn-info" ng-click="today()">Today</button>
    <button type="button" class="btn btn-sm btn-default" ng-click="setDate(2009, 7, 24)">2009-08-24</button>
    <button type="button" class="btn btn-sm btn-danger" ng-click="clear()">Clear</button>
    <button type="button" class="btn btn-sm btn-default" ng-click="toggleMin()" uib-tooltip="After today restriction">Min date</button>
</div>
  </body>
</html>

Script :

angular.module('ui.bootstrap.demo', ['ngAnimate', 'ui.bootstrap']);
angular.module('ui.bootstrap.demo').controller('DatepickerPopupDemoCtrl', function ($scope) {
  $scope.today = function() {
    $scope.dt = new Date();
  };
  $scope.today();



  $scope.clear = function() {
    $scope.dt = null;
  };

  $scope.inlineOptions = {
    customClass: getDayClass,
    minDate: new Date(),
    showWeeks: true
  };

  $scope.dateOptions = {
    dateDisabled: disabled,
    formatYear: 'yy',
    maxDate: new Date(2020, 5, 22),
    minDate: new Date(),
    startingDay: 1
  };

  // Disable weekend selection
  function disabled(data) {
    var date = data.date,
      mode = data.mode;
    return mode === 'day' && (date.getDay() === 0 || date.getDay() === 6);
  }

  $scope.toggleMin = function() {
    $scope.inlineOptions.minDate = $scope.inlineOptions.minDate ? null : new Date();
    $scope.dateOptions.minDate = $scope.inlineOptions.minDate;
  };

  $scope.toggleMin();

  $scope.open1 = function() {
    $scope.popup1.opened = true;
  };

  $scope.open2 = function() {
    $scope.popup2.opened = true;
  };

    $scope.open3 = function() {
    $scope.popup3.opened = true;
  };

  $scope.setDate = function(year, month, day) {
    $scope.dt = new Date(year, month, day);
  };

  $scope.formats = ['dd-MMMM-yyyy', 'yyyy/MM/dd', 'dd.MM.yyyy', 'shortDate'];
  $scope.format = $scope.formats[0];
  $scope.altInputFormats = ['M!/d!/yyyy'];

  $scope.popup1 = {
    opened: false
  };

  $scope.popup2 = {
    opened: false
  };



  $scope.popup3 = {
    opened: false
  };


  var tomorrow = new Date();
  tomorrow.setDate(tomorrow.getDate() + 1);
  var afterTomorrow = new Date();
  afterTomorrow.setDate(tomorrow.getDate() + 1);
  $scope.events = [
    {
      date: tomorrow,
      status: 'full'
    },
    {
      date: afterTomorrow,
      status: 'partially'
    }
  ];

  function getDayClass(data) {
    var date = data.date,
      mode = data.mode;
    if (mode === 'day') {
      var dayToCheck = new Date(date).setHours(0,0,0,0);

      for (var i = 0; i < $scope.events.length; i++) {
        var currentDay = new Date($scope.events[i].date).setHours(0,0,0,0);

        if (dayToCheck === currentDay) {
          return $scope.events[i].status;
        }
      }
    }

    return '';
  }
});

解决方案

I solved it by adding this in the model.

ng-model-options="{timezone: 'UTC'}"

See the updated plunkr here.

http://plnkr.co/edit/x0WLHNG7l5VBRU5tN8Q1?p=preview

这篇关于模型与模型之间的 Angular UI 引导程序日期不匹配日期选择器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
其他开发最新文章
热门教程
热门工具
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆