0

我正在尝试在 Magento 中对 PHP 网络服务进行 AJAX 调用。这是我的 PHP 代码片段。

    <?php 
$callbackUrl = "http://localhost/magento/webservices/NewCustomer1.php";
    //intiate oauth callback URL
    $temporaryCredentialsRequestUrl = "http://localhost/magento/oauth/initiate?oauth_callback=". urlencode($callbackUrl);
    $adminAuthorizationUrl = 'http://localhost/magento/admin/oauth_authorize';
    $accessTokenRequestUrl = 'http://localhost/magento/oauth/token';
    //Magento rest API URL
    $apiUrl = 'http://localhost/magento/api/rest';
    //Consumer key and secret
    $consumerKey = 's3xt7w8lwhfrrfzrfvwm3lrilkf66d5n';
    $consumerSecret = 'vr3eq1x899pz1cf4zzxjzx3q03t66r3n';
    //get customer attributes
    $firstname=$_POST['fname'];
    $lastname=$_POST['lname'];
    $email=$_POST['email'];
.......

这是我的jQuery

 $('#btnSubmit').click(function(){
    console.log("Submit Clicked");
    var fName=$('#firstname').val();
    var lName=$('#lastname').val();
    var email=$('#email_address').val();
    var password=$('#password').val();
    var pass_conf=$('#confirmation').val();
    var dataString = 'fname='+ fName + '&lname=' + lName + '&email=' + email + '&password=' +password+ '&webid=1&groupid=1';
    /*http://localhost/magento/webservices/Newcustomer1.php?fname=siri&lname=s&email=siri@abc.com&password=password123&webid=1&groupid=1*/
    //your validation code
$.ajax({
        url: 'http://localhost/magento/webservices/Newcustomer1.php',
        type: 'POST',
        data: dataString, 
        success: function(data) {
            $('#message').html(data);
        }
    });
});

提交时出现 302 Found 错误。如果我在 URL 本身中传递参数并将 $_REQUEST 更改为 $_GET,它会起作用。

提前致谢。

4

1 回答 1

0

嘿,这是你应该做的。

将您的表单提供给您需要发送 ID ex 的值:

<form id ="myfrom" >

现在在您的 ajax 调用中执行以下操作,而不是

data: dataString,

data : $('#myform').serialize() ,

让我知道是否可以解决它。在 PHP 部分我建议你先做

print_r($_POST);

只是为了让您了解数据是如何传递的。

于 2012-11-19T12:08:18.347 回答