即使PHP文件设置正确,也没有Ajax响应

时间:2012-01-31 17:42:14

标签: php jquery html ajax xmlhttprequest

我有一个简单的注册邮件列表表单。它将用户的电子邮件地址发送到store-address.php文件。我使用jQuery的ajax对象向php文件发送请求,然后收到响应。

问题是我没有得到php文件的回复。我尝试在请求中将缓存设置为false。我也尝试通过URL发送信息,如下所示:

http://www.fifthtribe.com/inc/store-address.php?ajax=true&cache=false&email=test4%40gmail.com

当我以这种方式这样做时它起作用并给我一个回应。但是当我通过ajax这样做时,它并没有给我一个回应。这来自Firebug:

enter image description here

enter image description here

enter image description here

以下是我的代码片段:

HTML:

<div id="mlist">
<form id="mlist_form" method="POST" action="">
    <input type="text" id="email" name="email" placeholder="Email" />
    <input type="submit" id="submit_btn" value="Join" />
</form>
<div id="response"></div>
</div>

JQuery的:

/* Add to mailing list */           
$("#mlist_form").submit( function(e){
    //$('#response').append('<div id="thanks-mce"><div id="mce-arrow"></div>Thanks for signing up!</div>');
    var email = escape( $('#email').val() );
    e.preventDefault();

    data = {
        "ajax" : "true",
        "email" : email,
        "cache" : "false"
}

    $.ajax({ 
            type: "POST",           
            url: 'inc/store-address.php',
            data: data,
            success: function( msg ){
                // successfully signed up
                $('#response').html( msg );
                $('#email').val('');
            },
            error: function( err ){
                // error while signing up
                $('#response').html('Error: Is your email correct?');
            }
    });

    return false;

});

PHP:         function storeAddress(){

    // Validation
    if(!$_GET['email']){ return "No email address provided"; } 

    if(!preg_match("/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*$/i", $_GET['email'])) {
        return "Email address is invalid"; 
    }

    require_once('MCAPI.class.php');
    // grab an API Key from http://admin.mailchimp.com/account/api/
    $api = new MCAPI('xxxxxxxxxxxxxxxxxxxxxxxxxxxxx-us4');

    // grab your List's Unique Id by going to http://admin.mailchimp.com/lists/
    // Click the "settings" link for the list - the Unique Id is at the bottom of that page. 
    $list_id = "xxxxxxxx";

    if($api->listSubscribe($list_id, $_GET['email'], '') === true) {
        // It worked!   
        return 'Success! Check your email to confirm sign up.';
    }else{
            // An error ocurred, return error message   
            return 'Error: ' . $api->errorMessage;
    }

}

    // If being called via ajax, autorun the function
    if($_GET['ajax']){ echo storeAddress(); }
?>

3 个答案:

答案 0 :(得分:4)

您意识到您的PHP脚本正在使用GET方法,但您的jQuery代码正在使用POST方法吗?

如果信息发布到PHP,PHP将需要使用$_POST来检索它。这解释了为什么使用$_GET的URL方法有效但jQuery POST没有。

祝你好运!

答案 1 :(得分:2)

看起来你正在使用$ _GET而不是$ _POST。尝试回显$ _REQUEST的内容,看看它是什么。

答案 2 :(得分:1)

调试你的脚本!

在脚本的成功和错误部分发出警报,然后您就会知道AJAX是否正常工作。

如果没有,您可以按照文档的方式查看问题所在。

此外,此处的错误非常简单。您在PHP中使用$ _GET并且使用AJAX发布数据,这不会显示错误。虽然PHP文档不会处理您的请求,因为它没有提供任何参数。