編集フォームの時点で、以下のコードで..フィールドから行変数にjsonをフェッチしました..フォームの開始時にそれらを印刷すると、「row.create_tour.startDate」と「row.create_tour.endDate」の値が表示されます. ..しかし、これらのモデルをピック・ア・デートに割り当てると、空になります..これはどうすればよいですか? pick-a-date のデフォルト設定はありますか? 日付を選択する入力ボックスに値を表示する他のオプションはありますか?
以下はコード スニペットです。
<div ng-repeat="row in fields">
<div layout="row">
<div class="dateField">
<md-input-container>
<label>Start date <span class="requiredStart">*</span> </label>
<input type="text" name="startDate[$index]" class="inputbox required startDate" pick-a-date="startDate[$index]" pick-a-date-options="options" min-date="create_tour.startDate" ng-model="row.create_tour.startDate" ng-change="updateChildEndDate(row);" required/>
<span style="color:red;font-size: 14px;" ng-show="step3Form.startDate[$index].$dirty && step3Form.startDate[$index].$invalid">
<span ng-show="step3Form.startDate[$index].$error.required" >This field is required</span>
</span>
</md-input-container>
</div>
<div class="dateField">
<md-input-container>
<label>End date <span class="requiredStart">*</span></label>
<input type="text" name="endDate[$index]" class="inputbox required endDate" ng-model="row.create_tour.endDate" pick-a-date="endDate[$index]" min-date="row.create_tour.startDate" required/>
<span style="color:red" ng-show="step3Form.endDate[$index].$dirty && step3Form.endDate[$index].$invalid">
<span ng-show="step3Form.endDate[$index].$error.required" >This field is required</span>
</span>
</md-input-container>
</div>
</div>
</div>