bootstrap datetimepicker未显示数据库

时间:2016-10-07 18:08:43

标签: angularjs twitter-bootstrap datetimepicker

我的HTML代码:

<input type="text" class="form-control" name="calLeaseStartDate" 
required ng-model="item.StartDate" 
datetimepicker-format="MM/DD/YYYY" options="gridDatePickerOption"
placeholder="Start Date" />
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar"></span>
</span>
从数据库加载时我的javascript代码。

angular.forEach($scope.commissionStatement.ComLeaseCalcList, function(item) {
    if (!angular.isUndefined(item.StartDate))
    {
        if (item.StartDate !== null) {
            item.StartDate = moment(item.StartDate).format("MM/DD/YYYY");                      
        }
     }                     
});

这是一个有角度的应用程序。此日期位于html中的表格内。选择日期并保存在数据库中时工作正常。但是在加载时它没有显示数据库中的日期。

感谢任何帮助。感谢。

0 个答案:

没有答案