javascript - angular-datepicker: get ng-model value into scope - Stack Overflow

I'm new to AngularJs and I want to show the selected date and time of my datepicker in a <pre&g

I'm new to AngularJs and I want to show the selected date and time of my datepicker in a <pre> tag by the scope of the ng-model="abc".

angular-datepicker (github), angular-datepicker (demo)

Html:

<div class="container">
    <div class="row">
      <div class="col-md-4">
        <div ng-controller="foo">
          <input type="datetime" class="form-control" date-time ng-model="myDate" format="dd-MM-yyyy HH:MM" placeholder="Select datetime">
          <pre>myDate: {{myDate}}</pre>
        </div>
      </div>
    </div>
  </div>

JS:

angular.module('demo', ['datePicker']).controller('foo', ['$scope', function($scope) {
  //empty
}]);

Here is a plnkr

I'm new to AngularJs and I want to show the selected date and time of my datepicker in a <pre> tag by the scope of the ng-model="abc".

angular-datepicker (github), angular-datepicker (demo)

Html:

<div class="container">
    <div class="row">
      <div class="col-md-4">
        <div ng-controller="foo">
          <input type="datetime" class="form-control" date-time ng-model="myDate" format="dd-MM-yyyy HH:MM" placeholder="Select datetime">
          <pre>myDate: {{myDate}}</pre>
        </div>
      </div>
    </div>
  </div>

JS:

angular.module('demo', ['datePicker']).controller('foo', ['$scope', function($scope) {
  //empty
}]);

Here is a plnkr

Share Improve this question asked Jan 20, 2016 at 2:20 herrhherrh 1,3681 gold badge17 silver badges34 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 4

Here's the updated plnkr - http://plnkr.co/edit/Qagb78UDqXQrabcZucr6.

To get it working, I had to make ng-model point to an object.property (myDate.value) in the input. And you can get the model value in the template like this:

<pre>
      myDate: {{myDate.value | date: "dd-MM-yyyy HH:MM"}}
</pre>

Controller:

$scope.myDate = {
        value: ''
};

Hope this answers your question. Here's the reason why ng-model need to have a dot - Does my ng-model really need to have a dot to avoid child $scope problems?.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745302888a4621544.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信