4

我想使用函数更改 ng-repeat 循环中项目的值。

例如,这将不起作用。

HTML

<ul class="unstyled">
  <li ng-repeat="todo in todoList.todos">
      <span>{{todo.name}}</span>
      <button ng-click="example(todo)">Change me</button>
  </li>
</ul>

JS

$scope.example = function(v) {
  v.name = 'i am different now';
};

完整示例

http://plnkr.co/edit/kobMJCsj4bvk02sveGdG

4

1 回答 1

10

使用controllerAs模式时,您应该在controller从控制器函数访问任何变量时使用别名。但这应该受限thiscontroller.

<button ng-click="todoList.example(todo)">Click me</button>

在这里演示

扩展

this在控制器工厂函数中使用关键字时也要记住。您应该将this变量分配给某个变量,以确保this您使用的不是其他变量this,请查看与this上下文相关的问题

angular.module('todoApp', [])
  .controller('TodoListController', function() {
    var toList = this;
    toList.todos = [{name:'test 1'},{name:'test 2'}];
    toList.example = function(v) {
      v.name = 'ora bene';
    };
  });
于 2016-02-26T11:32:21.153 回答