gpt4 book ai didi

javascript - 当模态弹出窗口出现在angularjs中时如何使背景静态

转载 作者:行者123 更新时间:2023-11-28 19:45:25 24 4
gpt4 key购买 nike

我正在使用模式弹出窗口来编辑 GridView 中的行。我可以使用 row.getProperty() 函数检索模式中的行值。但问题是,当我尝试在模态中编辑值时,在单击更新按钮之前,背景 View 中的值也会同时发生变化。

最佳答案

如果您不希望结尾立即生效,您需要复制您的模型并编辑复制的版本。用户单击更新按钮后,您可以将复制的值移动到原始模型。

function Controller($scope) {
$scope.master= {};

$scope.update = function(user) {
// Example with 1 argument
$scope.master= angular.copy(user);
};

$scope.reset = function() {
// Example with 2 arguments
angular.copy($scope.master, $scope.user);
};

$scope.reset();
}

参见https://docs.angularjs.org/api/ng/function/angular.copy了解更多详情。

关于javascript - 当模态弹出窗口出现在angularjs中时如何使背景静态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24359038/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com