編集が完了するまで再生を延期する方法があればいいのにと思います。
あなたはそれをすることができるかもしれません。AngularJSイベントを爆破するカスタムディレクティブを作成し、代わりに「変更」をリッスンするだけです。そのカスタムディレクティブがどのように見えるかのサンプルを次に示します。
YourModule.directive('updateModelOnBlur', function() {
return {
restrict: 'A',
require: 'ngModel',
link: function(scope, elm, attr, ngModelCtrl)
{
if(attr.type === 'radio' || attr.type === 'checkbox')
{
return;
}
// Update model on blur only
elm.unbind('input').unbind('keydown').unbind('change');
var updateModel = function()
{
scope.$apply(function()
{
ngModelCtrl.$setViewValue(elm.val());
});
};
elm.bind('blur', updateModel);
// Not a textarea
if(elm[0].nodeName.toLowerCase() !== 'textarea')
{
// Update model on ENTER
elm.bind('keydown', function(e)
{
e.which == 13 && updateModel();
});
}
}
};
});
次に、入力について:
<input type="text" ng-model="foo" update-model-on-blur />