检查是否为 401、404、500、其他 jquery/javascript

发布于 2024-12-11 04:55:56 字数 520 浏览 1 评论 0原文

可能的重复:
要捕获的 jQuery $.get 或 $.post页面加载错误(例如404)

也许我的想法是错误的。但无论如何。目前,在 jQuery 的帮助下,我正在运行 $.post()。

不过,我发帖是为了获取基于目录的内容。问题是信息是动态设置的。因此,如果事实证明我在某种意义上查询文件/文件夹并且它不存在,我会收到 404、401、500 等错误。简而言之,就是告诉我它不存在。也就是说,我如何检查或捕获它,以便当它发生时我可以通过 javascript 通过对话框或其他东西抛出自定义错误。

有可能吗?请注意,ajax/post 目前并未绑定到服务器端脚本,如果最终绑定到服务器端脚本,它将绑定到 ruby​​ on Rails 脚本。

Possible Duplicate:
jQuery $.get or $.post to catch page load error (eg. 404)

Maybe I am thinking this through wrong. But here goes anyway. Currently with the help of jQuery I am running $.post().

However I am posting to get contents based on a directory. Issue is the information is dynamically set. So if it turns out to be where I in a sense query for a file/folder and it doesn't exist I get a 404, 401, 500 whatever error.. Basicly in short telling me it doesn't exist. That said, how do I check for that, or catch it so when it occurs I can throw a custom error out via javascript through maybe a dialog or something.

Is it even possible? Mind you the ajax/post is not tied to a server side script currently and if it is to eventually be, it will be tied to a ruby on rails script.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薔薇婲 2024-12-18 04:55:56

您可以在 post 调用之后添加 .error(function(){...}) 以确定 AJAX 失败时的处理方式以及返回的错误代码。

代码:

$.post('/path/to/script/',function(){alert('success');})
  .error(function() { alert("error"); });

说明:

error(jqXHR, textStatus, errorThrown)函数

请求失败时调用的函数。该函数接收三个参数:jqXHR(在 jQuery 1.4.x 中为 XMLHttpRequest)对象、描述发生的错误类型的字符串以及可选的异常对象(如果发生)。第二个参数的可能值(除了 null 之外)有“timeout”、“error”、“abort”和“parsererror”。当发生 HTTP 错误时,errorThrown 会接收 HTTP 状态的文本部分,例如“未找到”或“内部服务器错误”。

http://api.jquery.com/jQuery.ajax/

You can add .error(function(){...}) right after your post call to determine how to handle if your AJAX fails, and also the error code that's returned.

Code:

$.post('/path/to/script/',function(){alert('success');})
  .error(function() { alert("error"); });

Explanation:

error(jqXHR, textStatus, errorThrown)Function

A function to be called if the request fails. The function receives three arguments: The jqXHR (in jQuery 1.4.x, XMLHttpRequest) object, a string describing the type of error that occurred and an optional exception object, if one occurred. Possible values for the second argument (besides null) are "timeout", "error", "abort", and "parsererror". When an HTTP error occurs, errorThrown receives the textual portion of the HTTP status, such as "Not Found" or "Internal Server Error."

http://api.jquery.com/jQuery.ajax/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文