ng-repeat中的Angular - bootstrap模式 - 如何更新主范围内的数据?

时间:2015-01-05 14:46:05

标签: angularjs angularjs-scope angular-ui angular-ui-bootstrap

我正在使用ng repeat来显示一个表,该表包含一个'编辑'打开模态的按钮。一旦数据在模态中更新,我就不知道如何将模态范围数据返回到用于生成表的主范围数据。

基本上我希望能够使用模态中的数据来更新主ng-repeat表。

Example Fiddle

这是关闭模态时执行的函数:

$scope.customer = customer;

   $scope.ok = function (customer) {

      $modalInstance.close($scope.customer);
                    };

});

在我的例子中,你可以看到" customer.details"在模态中更新时不会更新。

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:3)

如果您使用ng-model代替ng-modal,则可以使用。

我修改了您的fiddle