我正在尝试在Magento中对PHP webservice进行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。
,它就可以工作提前致谢。
答案 0 :(得分:0)
嘿,这是你应该做的。
将您的表单提供给您发送ID ex:
所需的值<form id ="myfrom" >
现在在你的ajax调用中执行以下操作,而不是
data: dataString,
做
data : $('#myform').serialize() ,
如果能解决问题,请告诉我。 在PHP部分,我首先要做的是
print_r($_POST);
只是为了看看数据是如何传递的。