嘿,我想弄清楚如何在 php 脚本中获取通过 ajax json 发送的表单值。
$.ajax
({
type: "POST",
url: "http://www.xxx.com/cart/gateway",
dataType: 'json',
async: false,
contentType: "json",
data: JSON.stringify({ "unique_id": $("#order_unique_id").val(), "name_on_card" : $("#name_on_card").val(), "card_number" : $("#card_number").val(), "expiry_date" : $("#expiry_date").val(), "cvv_code" : $("#cvv_code").val() }),
success: function (data) {
if (data && data != null && data["success"] != null && data["orderid"]) {
processSuccess(data["orderid"]);
} else if (data && data != null && data["error"] != null) {
processError(data["error"]);
} else {
processError('unknown');
}
processing = false;
}
})
目前它有一个错误,但这只是因为它从表单中寻找一个 POST 值。这是该代码:
public function __construct(&$page, $params) {
$page->cart = new theCart();
$page->cart->set_form();
switch($action){
case 'gateway':
$this->checkoutCart($page);
break;
...}
function set_form()
{
$this->setFormValue('b_email');
$this->setFormValue('b_first_name');
$this->setFormValue('b_last_name');
.....etc etc
//ADDED 7/25/2012
$this->setFormValue('name_on_card');
$this->setFormValue('card_number');
$this->setFormValue('expiry_date');
$this->setFormValue('cvv_code');
$this->setFormValue('order_unique_id');
$this->verified = false;
}
function setFormValue($name){
if(isset($_POST[$name])){
$this->$name = trim($_POST[$name]);
}
}
private function checkoutCart(&$page){
$page->part->body->content_html = $this->pPay($page, $this->getPay());
}
private function getPay(){
//echo 'getP== ' . json_decode( $_POST[ 'unique_id' ], true );
echo 'getP== ' . $_POST['unique_id'];
return array(
'unique_id' => $_POST['unique_id'],
'name_on_card' => $_POST['name_on_card'],
'card_number' => $_POST['card_number'],
'expiration_date' => $_POST['expiry_date'],
'cvv_code' => $_POST['cvv_code']
);
}
我没有为上面的$_POST['unique_id']获得任何价值。
原来的邮政编码是这样的:
$.post("http://www.xxx.com/cart/gateway",
{
unique_id:$("#order_unique_id").val(),
name_on_card:$("#name_on_card").val(),
card_number:$("#card_number").val(),
expiry_date:$("#expiry_date").val(),
cvv_code:$("#cvv_code").val()
},
function(data) {
if (data && data != null && data["success"] != null && data["orderid"]) {
processSuccess(data["orderid"]);
} else if (data && data != null && data["error"] != null) {
processError(data["error"]);
} else {
processError('unknown');
}
processing = false;
},
"json"
);
但这不起作用,因为它无法正确格式化(它正在寻找一个 json 响应..这似乎把它放在 ?blah=blah&blah=blah.... **但是确实产生了它正在寻找的值代码的 $.POST 部分..但如果错误不是想要的格式(json),它就毫无价值。
我怎样才能纠正这种情况的发生?