1

我无法让 ajaxSubmit 捕获错误:

$(document).ready(function(){

        $("#supportForm").validate({
              rules: {
                 //validation
              },

              messages: {              
                 //messages
              },

              submitHandler: function(form) {
                    $(form).ajaxSubmit({
                        url:"ajax/supportform",
                        type:"GET",
                        dataType: 'json',
                        error: function() { alert('error'); },
                        success: function() {alert('success'); },


                    });
              }

        });  
    })

我必须在我的 php 脚本中返回什么才能让它触发错误事件?

我尝试返回一个带有 error=>0 、 exit(json_encode('error'=>'0'); 等的数组。

4

3 回答 3

5

请参阅 Mike de Klerk 的链接,它提供了有关如何捕获错误的线索:

似乎成功和错误回调与传递布尔错误/成功消息无关,但前提是成功调用了 url。我希望我不会得到错误结果,因为我使用的 CMS 总是返回某种内容 - 即使它是 404 或 403 页面。

无论如何,我必须从我的 php 脚本中返回一个 json 字符串:

<?php


$response = json_encode(array("error" => "false","message" => "this is the error message"));

return $response;

然后在我的成功回调中解析它:

submitHandler: function(form) {
        $(form).ajaxSubmit({
            url:"ajax/supportform",
            type:"POST",
            dataType: 'json',

            error: function(data ) { alert(data); },

            success: function(response) {

            var obj = jQuery.parseJSON(response);

            if(obj.error == "true"){
                alert('error is true');
            }else{
                alert('error is false')
            }

            },


        });
  }
于 2012-11-27T20:36:40.800 回答
2

编辑:要显示来自 PHP 的一些特定错误描述,您应该阅读这个问题:jQuery Ajax error handling, show custom exception messages

让你的服务器产生一些错误,使用 PHP 你可以这样做

<?php
header("HTTP/1.0 404 Not Found");
?>

查看头函数的文档:http: //nl.php.net/manual/en/function.header.php

您在这里所做的是为您的网络浏览器提供不属于典型 HTML 源的数据,通过这些数据,网络浏览器知道出了问题。

您实际上可以将所需的所有元数据添加到网页请求的标头中,但是当网络浏览器不知道这意味着什么时,它就会被忽略。请参阅此处的定义或状态代码:http: //www.w3.org/Protocols/rfc2616/rfc2616-sec10.html

于 2012-11-27T19:08:34.187 回答
0

将 url 更改为不存在的内容以强制出错

          function(form) {
                $(form).ajaxSubmit({
                    url:"ajax/supportform001",
                    type:"GET",
                    dataType: 'json',
                    error: function() { alert('error'); },
                    success: function() {alert('success');} // <-was an extra comma
                });
          }
于 2012-11-27T19:11:03.583 回答