Angular.js <input type =“date”/>更改提交值的格式

时间:2014-04-16 09:54:55

标签: javascript angularjs angularjs-directive angular-ui-bootstrap

<label>From</label>
<input type="date"  ng-model="startDate"/>
<label>To</label>
<input type="date" ng-model="endDate"/>

<button class="btn btn-success" ng-click="getStatistics(startDate, endDate)">Update</button>

** *** JS

$scope.getStatistics = function(startDate, endDate) {
    $http.get('/admin/api/stats?start=' + startDate + '&end=' + endDate).success(function(data) {
        $scope.stats = data;
    });
}

上面的代码在url上按startDate和endDate值,但问题是提交的值是2014-12-01,我希望我的格式为01-05-2014

有什么建议吗?

3 个答案:

答案 0 :(得分:4)

不幸的是,实现处理日期的特定元素类型的浏览器(例如Chrome)使用操作系统日期格式,而我所知道的任何一种都不允许您更改格式(它甚至不是W3C规范)。此外,如果浏览器不支持它(大多数),它使用常规文本输入,但只接受ISO-8601格式的数据,这更糟糕。

就个人而言,我避免使用type="date",因为除非您使用支持它的移动设备(例如iOS),否则它几乎毫无价值。因此,如果可以,请使用文本输入,如果您希望将文本值转换为日期对象以分配给模型,并在更新时重新格式化,则需要查找或编写指令这样做。有UI-Bootstrap date picker,但它不会为您重新格式化日期,并带来比您需要的更多的东西。也可能有其他人。

但是,本着回答你的问题的精神,我整理了一个演示指令,它将输入的日期重新格式化为你选择的格式(使用Angular&#39; s $date filter)。它会重新格式化粘贴,模糊/更改,或者在输入日期后短暂暂停不活动后(后者在现实世界中可能效果不佳,但它看起来有点酷。如果它&#取出它&# 39;很奇怪)。另一个缺点是它使用浏览器的默认机制来解析Date。如果这不够,请将其更换为。我确信它远没有准备好生产,但它已经开始了。如果它足够有用,我会把它变成Github上的正式模块。

angular.module("demo.directives", [])
  .directive('date', ['$filter', '$timeout', function($filter, $timeout) {
    return {
      restrict: 'A',
      require: '?^ngModel',
      link: function($scope, $element, $attrs, ngModel) {
        var format = $attrs.dateFormat || 'short', // default date format
             validityName = 'date'; // change the name to whatever you want to use to check errors

        // called by the directive to render the first time, and also on events when the value is changed 
        var formatter = function() {
            var date =  ngModel.$modelValue ? 
              $filter('date')(ngModel.$modelValue, format) : 
              ngModel.$viewValue;

            $element.val(date);
        };

         // parse the value when it is being set from the view to the model
         ngModel.$parsers.unshift(function(value) {
            //  you may wish to use a more advanced date parsing module for better results
            var date = new Date(value);

            if (isNaN(date)) { 
              // invalid date, flag invalid and return undefined so we don't set the model value
              ngModel.$setValidity(validityName, false);
              return undefined;
            }

            // clear invalid flag
            ngModel.$setValidity(validityName, true);

            return date;
         });

         // used by ngModel to display to render the directive initially; we'll just reformat
         ngModel.$render = formatter;

         var handle;

         // trigger the formatter on paste
         $element.on('paste cut', function() {
           if (handle) $timeout.cancel(handle);
           handle = $timeout(formatter, 0); // needs to break out of the current context to work
         })
         // you can axe this whole event if you don't like the reformat after a pause
         $element.on('keydown', function() {
           if (handle) $timeout.cancel(handle);
           handle = $timeout(formatter, 750);
         })
         // trigger the formatter on blur
         $element.on('blur change', formatter);
      }
    };
  }]);

用法:

在模块中加入directive from this plunk,然后在HTML中使用

 <input type="text" date date-format="short" ng-model="myDateValue" />

答案 1 :(得分:0)

嗯,输入日期为您提供ISO format的日期。如果您希望格式化日期,您可能需要这样的功能:

function formatDate(isoDateString)
{
  var newDate = new Date(isoDateString);
  return ('0' + newDate.getDate()).slice(-2)+"-"+('0' + (newDate.getMonth() + 1)).slice(-2)+"-"+newDate.getFullYear();
}

我在月份中添加+1,因为getMonth会返回0到11之间的数字。 切片(-2)用于前导0。

答案 2 :(得分:0)

使用过滤器概念

angular.module('yourmodule').filter('date', function($filter)
{
 return function(input)
 {
  if(input == null){ return ""; } 

  var _date = $filter('date')(new Date(input), 'dd-MM-yyyy');

  return _date.toUpperCase();

 };
});



<span>{{ d.time | date }}</span>

或在控制器中

var filterdatetime = $filter('date')( $scope.date );

Date filtering and formatting