プロジェクトでAngular Moment Pickerを使用しています。編集ページになると、ng-model 値は API からのデータによって上書きされる必要がありますが、ng-model 値を undefined にバインドする代わりに、いずれにせよ値は瞬間ピッカー ng-model に上書きされません。moment-picker を削除すると、機能します。以下は私の状況のデモです。
意見
<input name="time_of_time"
class="form-control"
placeholder="Select a time"
ng-model="scheduler.timeOfTime"
ng-model-options="{updateOn: 'blur'}"
moment-picker="scheduler.timeOfTime" //Working if remove this line
format="HH:mm">
コントローラ
myApp.controller('HomeCtrl', function ($scope) {
$scope.scheduler = {};
$scope.scheduler.timeOfTime = '11:10';
console.log($scope.scheduler);