gpt4 book ai didi

javascript - AngularJS 思考 - 在 AJAX 请求中修改 DOM 的正确方法是什么?

转载 作者:行者123 更新时间:2023-11-28 13:40:02 25 4
gpt4 key购买 nike

我是 AngularJS 的新手。我读过"Thinking in AngularJS" if I have a jQuery background?答案很有意义。然而,我仍然很难在不依赖 jQuery 的情况下翻译我想做的事情。

我的要求看起来相当简单。我有一个表单,在提交时会执行 AJAX 调用。我希望“提交”按钮能够直观地更新,以通知用户 AJAX 请求状态。提交按钮不会用简单的文本更新,而是用文本加图标更新。该图标是 HTML 格式,这意味着我无法使用 AngularJS 简单数据绑定(bind)。

我有此请求在 jsFiddle 工作。

HTML

<div ng-app >
<form id="id_request" ng-controller="RequestCtrl">
<input id="id_title" name="title" ng-model="request.title" type="text" class="ng-valid ng-dirty" />
<button type="submit" class="btn btn-primary" ng-click="submitRequest($event)">
Submit
</button>
</form>
</div>

AngularJS

function RequestCtrl($scope, $http) {
$scope.request = {};
$scope.submitRequest = function($event) {
$($event.target).prop("disabled", true).html('<i class="icon-refresh icon-spin"></i> Submitting</a>');
$http({
method : 'GET',
url : '/ravishi/urSDM/3/',
data : $.param($scope.request),
headers : {
'Content-Type' : 'application/x-www-form-urlencoded',
}
}).
success(function(data, status, headers, config) {
console.log("success");
console.log($event);
// This callback will be called asynchronously when the response is available.
$($event.target).html('<i class="icon-ok"></i> Success').delay(1500).queue(function(next) {
$(this).removeAttr("disabled").html("Submit");
next();
});
}).
error(function(data, status, headers, config) {
console.log("error");
// Called asynchronously if an error occurs or server returns response with an error status.
$($event.target).html('<i class="icon-warning-sign"></i> Error').delay(1500).queue(function(next) {
$(this).removeAttr("disabled").html("Submit");
next();
});
});
}
}

我完全意识到这是在 AngularJS 中错误的做法。我不应该更新 Controller 中的 DOM,而应该尝试完全避免使用 jQuery。

根据我收集的信息,我需要使用指令。我看过一些示例,但想不出一种通过按钮经历的多种状态来更新按钮 HTML 的好方法。按钮有四种状态:

1 初始 -> 2 提交 -> 3 错误或 4 成功 -> 1 初始

我的第一个想法是更新 Controller 中的任意按钮属性。然后在指令中,我会以某种方式检索属性值并有条件地适当更新 HTML。使用这种方法,我仍然不确定如何将 AJAX 请求的状态链接到指令中按钮的 HTML。我是否应该放弃 Controller 中的 AJAX 调用,而是通过绑定(bind)到按钮的单击事件来在指令中进行 AJAX 调用?或者,有更好的方法吗?

最佳答案

您要做的主要更改是不再操作 DOM,而是对模型本身进行所有更改。下面是一个示例,我使用两个单独的属性 $scope.icon$scope.locked 来控制图标样式和按钮状态:http://jsfiddle.net/CpZ9T/1/

关于javascript - AngularJS 思考 - 在 AJAX 请求中修改 DOM 的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18452951/

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