调试工具可以使用微信web开发者工具https://mp.weixin.qq.com/wiki/10/e5f772f4521da17fa0d7304f68b97d7e.html#.E4.B8.8B.E8.BD.BD.E5.9C.B0.E5.9D.80
- 支付前准备
- 微信支付,要求有服务号,且认证后的.
当申请支付功能后, 会收到2个参数, 商户id,和商户key.
注意,这2个参数,不要和微信的参数混淆.
微信参数: appid, appkey, token
支付参数: merchant_id(商户号), key(支付密钥)- 开发中支付密钥怎么得到?
答: 找老板要(用户或者公司有用来测试)
到 https://pay.weixin.qq.com -->账户中心-->API安全-->设置API密钥
自行设置一个32位的密钥- 在微信支付-开发配置-配置测试授权目录(测试域名),测试白名单('用来支付测试'),支付授权目录先不用填,测试跑通之后再填;
- 支付思路(https://easywechat.org/zh-cn/docs/payment.html)
在wechat中的支付流程:
- 得到支付对象payment
- 把订单对象order(订单号,金额,openid,放在
$attributes
以参数传入),- 预处理,得到一个预处理id,
payment->prepare(order)
;- 生成json配置
- 把json写在模板中,触发js
如下:
//前端页面添加js
xxForm.onsubmit = function() {
WeixinJSBridge.invoke(
'getBrandWCPayRequest', {!!$json!!},
function(res){
if(res.err_msg == "get_brand_wcpay_request:ok" ) {
// 使用以上方式判断前端返回,微信团队郑重提示:
// res.err_msg将在用户支付成功后返回
// ok,但并不保证它绝对可靠。
}
}
);
return false;
}
3 demo
//done页面处理支付准备
public function done() {
if( !$req->session()->has('user') ) {//判断是否有用户名
return redirect('center');
}
//接收POST数据(如地址,手机号,姓名)和登陆用户的session数据(如uid),写入orders表
$order = new Order();
$order->ordsn = date('Ymd').mt_rand(1000000,9999999);
//用户信息
//dd(session()->get('user'));
$order->openid = session()->get('user')['id'];
$order->xm = $req->xm;//用户姓名
$order->tel = $req->mobile;//用户电话
$order->address = $req->address;//用户地址
$order->money = Cart::getTotal();//总价
$order->ispay = 0;//未支付
$order->ordtime = time(); //订单生成时间
$order->save();//插入数据库orders表
//相应产品插入到items表
$goods = Cart::getContent();//所有购物车商品(购物车只能全结账)
foreach($goods as $v){
$item = new Item();
$item->oid = $order->oid;//订单的自增id
$item->gid = $v['id'];//订单id
$item->goods_name = $v['name'];//商品名称
$item->price = $v['price'];//商品价格
$item->amount = $v['quantity'];//商品数量
$item->save();
}
Cart::clear();//清空购物车
// 准备微信支付
// 1.创建支付对象
$payment = $this->app->payment;
// 2. 创建订单对象
$attributes = [
'trade_type' => 'JSAPI', // JSAPI,NATIVE,APP...
'body' => '鲜花',
'detail' => '好多鲜花',
'out_trade_no' => $order->ordsn,
'total_fee' => intval($order->money*100),
'openid' =>$order->openid,
'notify_url' => 'http://7de41313.ittun.com/pay',//支付完成回调url
// ...
];
$wxorder = new WxOrder($attributes);
// 3. 预处理
$result = $payment->prepare($wxorder);
if ($result->return_code == 'SUCCESS' && $result->result_code == 'SUCCESS
$prepayId = $result->prepay_id;
}
// 4. 得到支付的JS配置
$json = $payment->configForPayment($prepayId);
return view('done' , ['ordsn'=>$order->ordsn , 'json'=>$json]);
}
// JS调用
$('form').submit(function(){
WeixinJSBridge.invoke(
'getBrandWCPayRequest', {!!$json!!},
function(res){
if(res.err_msg == "get_brand_wcpay_request:ok" ) {
// 使用以上方式判断前端返回,微信团队郑重提示:
// res.err_msg将在用户支付成功后返回
// ok,但并不保证它绝对可靠。
}
}
);
return false;
});
public function pay(Request $req){
//调用微信支付接口
//先默认支付完成
$order = Order::where('ordsn',$req->ordsn)->first();
$order->ispay = 1;//修改订 单状态为支付
$order->save();
$money = $order->money;//获取支付金额
$openid = session()->get('user')['id'];//当前微信的openid
$user = User::where('openid',$openid)->first();
//分钱
foreach(['0.5'=>$user->p1,'0.25'=>$user->p2,'0.1'=>$user->p3] as $rate=>$p){
if($p > 0) {
$fee = new Fenxiao();
$fee->uid = $p;//受益人id
$fee->byid= $user->uid;//购买者id
$fee->oid= $order->oid;//订单 id
$fee->money= $order->money * $rate;//受益者分得资产
$fee->save();
}
return '购物成功';
}
}
//pay函数处理支付回调
public function pay(Request $req){
//支付完成处理回调函数
$response = $app->payment->handleNotify(function($notify, $successful){
//out_trade_no为商家订单号
$order = Order::where('ordsn',$notify->out_trade_no)->first();
if (!$order) { // 如果订单不存在
return '支付失败';
}
$order->ispay = 1;//修改订单状态为支付
$order->save();
$money = $order->money;//获取支付金额
$openid = session()->get('user')['id'];//当前微信的openid
$user = User::where('openid',$openid)->first();
//分钱
foreach(['0.5'=>$user->p1,'0.25'=>$user->p2,'0.1'=>$user->p3] as $rate=>$p){
if($p > 0) {
$fee = new Fenxiao();
$fee->uid = $p;//受益人id
$fee->byid= $user->uid;//购买者id
$fee->oid= $order->oid;//订单 id
$fee->money= $order->money * $rate;//受益者分得资产
$fee->save();
}
}
});
}