ng-list中的contenteditable项目的双向绑定

时间:2013-02-27 09:35:04

标签: angularjs contenteditable angularjs-ng-repeat

我希望使用contenteditable属性更新电话列表中的电话名称。我尝试过使用ng-change但是没有被解雇。我有什么方法可以做到这一点吗?

我有Store.Phones

的列表
<ul class="store">
  <li ng-repeat="Phone in Store.Phones">
     <strong contenteditable> {{Phone.Name}}</strong>
  </li>
<ul>

所以现在当我编辑电话名称时,我需要在列表中更新它。

我尝试了类似这样的模型指向元素。这不起作用。

<strong ng-model='Store.Phones[$index].Name'> {{Phone.Name}}</strong>

另外

<strong ng-model='PhoneName' ng-change='PhoneNameChanged()'> {{Phone.Name}}</strong>

但在这种情况下,该方法不会被解雇。

2 个答案:

答案 0 :(得分:16)

修改

以下是基于Angular文档中仅使用ng-repeat的示例的示例。由于ng-repeat为每次迭代创建了一个新的范围,因此它应该不是问题。

<!doctype html>
<html ng-app="form-example2">
<head>
    <script src="http://code.angularjs.org/1.0.5/angular.min.js"></script>
    <script>
    angular.module('form-example2', []).directive('contenteditable', function() {
        return {
            require: 'ngModel',
            link: function(scope, elm, attrs, ctrl) {
                // view -> model
                elm.bind('blur', function() {
                    scope.$apply(function() {
                        ctrl.$setViewValue(elm.html());
                    });
                });

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

                // load init value from DOM
                ctrl.$setViewValue(elm.html());
            }
        };
    });
    </script>
</head>
<body>
    <div ng-repeat="i in [1, 2, 3]">
        <div contentEditable="true" ng-model="content" title="Click to edit">Some</div>
        <pre>model = {{content}}</pre>
    </div>
    <style type="text/css">
    div[contentEditable] {
        cursor: pointer;
        background-color: #D0D0D0;
    }
    </style>
</body>
</html>

原始

有一个例子说明如何在此处执行此操作:http://docs.angularjs.org/guide/forms

它位于“实现自定义表单控件(使用ngModel)”标题下。

答案 1 :(得分:4)

只需删除ctrl.$setViewValue(elm.html());

即可

链接到http://jsfiddle.net/blingz/B5UbE/12/