AngularJS和contentEditable双向绑定不能按预期工作

前端之家收集整理的这篇文章主要介绍了AngularJS和contentEditable双向绑定不能按预期工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么在下面的示例中初始渲染的值是{{person.name}}而不是David?你将如何解决这个问题?

Live example here

HTML:

<body ng-controller="MyCtrl">
  <div contenteditable="true" ng-model="person.name">{{ person.name }}</div>
  <pre ng-bind="person.name"></pre>
</body>

JS:

app.controller('MyCtrl',function($scope) {
  $scope.person = {name: 'David'};
});

app.directive('contenteditable',function() {
  return {
    require: 'ngModel',link: function(scope,element,attrs,ctrl) {
      // view -> model
      element.bind('blur',function() {
        scope.$apply(function() {
          ctrl.$setViewValue(element.html());
        });
      });

      // model -> view
      ctrl.$render = function() {
        element.html(ctrl.$viewValue);
      };

      // load init value from DOM
      ctrl.$setViewValue(element.html());
    }
  };
});
问题是,当插值尚未完成时,您正在更新视图值。

所以删除

// load init value from DOM
ctrl.$setViewValue(element.html());

或替换为

ctrl.$render();

解决问题。

原文链接:https://www.f2er.com/angularjs/146237.html

猜你在找的Angularjs相关文章