Home > Backend Development > PHP Tutorial > 请问php MVC,怎么用$post() 方法 请求 控制器 页面 里面的orderAction()方法

请问php MVC,怎么用$post() 方法 请求 控制器 页面 里面的orderAction()方法

WBOY
Release: 2016-06-20 12:43:01
Original
848 people have browsed it

请问php MVC中,怎么用$post() 方法 请求 控制器 页面 里面的orderAction()方法
//这是我写的请求地址
$orderUrl = 'http://'.$_SERVER['HTTP_HOST'].'/Ehking/Controller/OnlinePayController.php/order';
$.post(
\''.$orderUrl.'\',
{
merchantId: \''.$merchantId.'\',
notifyUrl: \''.$notifyUrl.'\',
callbackUrl: \''.$callbackUrl.'\',
requestId: \''.$requestId.'\',
orderAmount: \''.$orderAmount.'\',
orderCurrency: \''.$orderCurrency.'\',
paymentModeCode: \''.$paymentModeCode.'\',
remark: \''.$remark.'\',
merchantUserId: \''.$merchantUserId.'\',
payerName: \''.$payerName.'\',
phoneNum: \''.$phoneNum.'\',
idType: \''.$idType.'\',
bankCardNum: \''.$bankCardNum.'\',
email: \''.$email.'\',
cardNo: \''.$cardNo.'\',
cvv2: \''.$cvv2.'\',
expiryDate: \''.$expiryDate.'\',
name: \''.$name.'\',
mobileNo: \''.$mobileNo.'\',
cashierVersion: \''.$cashierVersion.'\',
forUse: \''.$forUse.'\',
bindCardId: \''.$bindCardId.'\',
details:'.$product.'
},
function(data,status){
alert(data);
if(data==1){
            alert(\'服务器处理成功\');

        }else{
            alert(\'服务器处理失败\');

        }
}
);


回复讨论(解决方案)

public function orderAction()
    {
//$merchantId = $_POST['merchantId'];
//echo '.$merchantId.';
echo '1122';
}

这是我 class   OnlinePayController  里面 的  orderAction() 方法

你那一大堆代码是写在哪里的?
在浏览器中看看是否有误

你那一大堆代码是写在哪里的?
在浏览器中看看是否有误



写在后台的一个页面,我是在把后台的数据传 到前台页面,相当于 ,我在后台,生成的一个前台的按钮,这个按钮的onclick 事件就执行这个$post() ..............

我已经找到答案了,这是个 class 的方法,首先要 实例化 这个 class   OnlinePayController  然后再调用里面的  orderAction()方法
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template