11

我是 AngularJS 的新手,找不到任何合适的答案。我的应用程序当前包含通过 Angular 显示的项目列表。还有一个显示当前选中项名称的标签,以及一个允许修改当前选中项名称的输入框。

我不知道如何同时:

  1. 允许选中一个item,触发更新label和输入框文字显示新选中item的名字
  2. 允许编辑输入框中的名称,触发更新显示当前显示的项目名称的标签
  3. 对名称的编辑应反映在原始模型项中

目前,我正在尝试通过针对该项目的标志来跟踪哪个项目是当前的,这不是我想要的。理想情况下,我将currentItem在下面替换为直接引用 with 中的items项目isCurrent=true

当前项目名称标签:

`<div id="CurrentItem" data-ng-model="currentItem">{{currentItem.name}}</div>`

当前项目名称输入框:

`<input id="ItemName" type="text" data-ng-model="currentItem" value="{{currentItem.name}}" />`

显示所有项目:

<div data-ng-repeat="item in items" data-ng-click="changeItem(item)">`
    <img src="images/ItemIcon.png">
<div>{{item.name}}</div>

控制器:

var CoreAppController = function($scope, $location) {
   $scope.changeItem = function(item) {
        var length = $scope.items.length;
        while(length-- ) {
            $scope.items[length].isCurrent = false;
        }
        $scope.currentItem = item;
        $scope.items.indexOf(item).isCurrent = false;
    }

    $scope.createItem = function(name, layout) {
        $scope.items.push({ id: $scope.items.length + 1,
                            name: name,
                            isCurrent: false
        });
    }

    // Initialisation
    $scope.items = [];
    $scope.createItem("Item 1");
    $scope.createItem("Item 2");

    $scope.items[0].isCurrent = true;
    $scope.currentItem = $scope.items[0];

}

任何建议表示赞赏!

4

1 回答 1

19

我不确定您当前的代码,但这里有一个模型,可以满足您的要求

JS

app.controller('MainCtrl', function($scope) {
  $scope.items = [
    { name: 'foo' },
    { name: 'bar' },
    { name: 'test' }
    ];
    $scope.editing = null;
    $scope.editItem = function(item) {
      $scope.editing = item;
    }
});

和标记

  <body ng-controller="MainCtrl">
    <ul>
      <li ng-repeat="item in items">
        {{item.name}}
        <a ng-click="editItem(item);">edit</a>
      </li>
    </ul>
    <div ng-show="editing">
       <input type="text" ng-model="editing.name"/>
       <span>{{editing.name}}</span>
    </div>
  </body>

希望这会有所帮助。如果您需要更多描述,请告诉我。

于 2013-01-24T14:45:38.780 回答