作者 景龙
1 个管道 的构建 失败 耗费 0 秒

调试支付

@@ -14,7 +14,7 @@ return array( @@ -14,7 +14,7 @@ return array(
14 'mch_id' => '1515355581', //支付商户ID 14 'mch_id' => '1515355581', //支付商户ID
15 'key' => 'cccccccccccccccccccccccccccccc00', 15 'key' => 'cccccccccccccccccccccccccccccc00',
16 // 'notify_url' => '/addons/epay/api/notify/type/wechat', //请勿修改此配置 16 // 'notify_url' => '/addons/epay/api/notify/type/wechat', //请勿修改此配置
17 - 'notify_url' => 'http://feipin.w.brotop.cn/api/Wxpay/notify', //请勿修改此配置 17 +// 'notify_url' => 'http://feipin.w.brotop.cn/api/Wxpay/notify', //请勿修改此配置
18 'cert_client' => '/epay/certs/apiclient_cert.pem', // 可选, 退款,红包等情况时需要用到 18 'cert_client' => '/epay/certs/apiclient_cert.pem', // 可选, 退款,红包等情况时需要用到
19 'cert_key' => '/epay/certs/apiclient_key.pem',// 可选, 退款,红包等情况时需要用到 19 'cert_key' => '/epay/certs/apiclient_key.pem',// 可选, 退款,红包等情况时需要用到
20 'log' => 1, 20 'log' => 1,
@@ -7,6 +7,7 @@ use addons\epay\library\Service; @@ -7,6 +7,7 @@ use addons\epay\library\Service;
7 use app\admin\model\Porder; 7 use app\admin\model\Porder;
8 use think\Db; 8 use think\Db;
9 use Yansongda\Pay\Pay; 9 use Yansongda\Pay\Pay;
  10 +use think\Log;
10 use fast\Http; 11 use fast\Http;
11 use think\Validate; 12 use think\Validate;
12 /** 13 /**
@@ -93,6 +94,7 @@ class Wxpay extends Api @@ -93,6 +94,7 @@ class Wxpay extends Api
93 //你可以在这里你的业务处理逻辑,比如处理你的订单状态、给会员加余额等等功能 94 //你可以在这里你的业务处理逻辑,比如处理你的订单状态、给会员加余额等等功能
94 $porderModel = new Porder(); 95 $porderModel = new Porder();
95 $porderModel->where(['uid' => $this->user_id,'p_id'=>6])->update(['status'=>$this->order_status[1]]); 96 $porderModel->where(['uid' => $this->user_id,'p_id'=>6])->update(['status'=>$this->order_status[1]]);
  97 + Log::write('测试日志信息,这是警告级别,并且实时写入','notice');
96 //下面这句必须要执行,且在此之前不能有任何输出 98 //下面这句必须要执行,且在此之前不能有任何输出
97 $this->success('支付成功',$pay->success()); 99 $this->success('支付成功',$pay->success());
98 } 100 }