我正在使用ng repeat来显示一个表,该表包含一个'编辑'打开模态的按钮。一旦数据在模态中更新,我就不知道如何将模态范围数据返回到用于生成表的主范围数据。
基本上我希望能够使用模态中的数据来更新主ng-repeat表。
这是关闭模态时执行的函数:
$scope.customer = customer;
$scope.ok = function (customer) {
$modalInstance.close($scope.customer);
};
});
在我的例子中,你可以看到" customer.details"在模态中更新时不会更新。
提前感谢您的帮助。