0

有没有办法将日期选择器值添加到 Firebase 数据库中?

这些方面的东西?

  $scope.AddPost = function() {
          ...
          Published: $scope.post.Published.DATESTAMP
          ...
        }

物化日期选择器值如下:

<input type="date" ng-model="post.Published" class="datepicker">

选择器的服务器端代码:

<input type="text" ng-model="post.Published" class="datepicker ng-pristine ng-valid picker__input ng-touched picker__input--active picker__input--target" readonly="" id="P2078770150" tabindex="-1" aria-haspopup="true" aria-expanded="true" aria-readonly="false" aria-owns="P2078770150_root">

试过:

$scope.AddPost = function() {
    myPosts.$add({
      Title: $scope.post.Title,
      Intro: $scope.post.Intro,
      Body: $scope.post.Body,
      Published: $scope.post.Published,
      Author:$scope.post.Author
    })

除日期外,所有内容都加载。

我一直在寻找一个等价物,但只发现Firebase.ServerValue.TIMESTAMP这不是我想要的,因为我需要人们能够手动选择日期。

4

2 回答 2

1

就像@Frank 所说,日期可以根据您的要求存储为字符串或firebase 中的时间戳。

尝试

$scope.AddPost = function() {
      ...
      Published: new Date($scope.post.Published).getTime();
      ...
    }
于 2015-10-02T18:55:45.317 回答
1

我已经通过各种线程设法解决了这个问题。所以我

HTML

 <div class="form-group">
                        <label class="col-md-4 control-label" for="numDate">Choose a Date</label>
                        <input type="date" name="Published" ng-model="post.Published" class="datepicker" required>
                        <span class="error" ng-show="input.Published.$error.required">
                    </div>

在 AddPost() 函数中:

Published: new Date($scope.post.Published).getTime(),

角度

<p>By: {{post.Author}} &nbsp; Published on: {{post.Published |    date:'mediumDate'}}</p>

因此,我没有尝试在添加过程中进行转换,而是保留了一个时间戳,然后在视图中对其进行了转换。

谢谢

于 2015-10-03T12:36:15.770 回答