1

我对 Angular 非常陌生,并且通过 moment.js 使用这个 DateTimePicker。我无法弄清楚如何在我的情况下很好地设置默认值它是 {{z.startDate}} 并且没有在那里显示。那么如何设置该默认值并使其与 ng-model 绑定。

<div ng-repeat="(key,z) in x.data">
    <input class="form-control" ng-model="z.startDate" ng-model-options="{ updateOn: 'blur' }" change="onDateChange(newValue, oldValue)" placeholder="Select a date..." value="z.startDate" moment-picker="ctrl.input" format="L">
</div>
4

1 回答 1

0

在使用矩控件时,我们只需要将矩对象传递给特定的控件。Moment 对象不呈现任何其他值。

startDate = moment();
于 2017-11-21T05:50:32.673 回答