作者 董瑞恩
1 个管道 的构建 通过 耗费 0 秒

interface

... ... @@ -15,7 +15,7 @@ return [
/**
* 账号基本信息,请从微信公众平台/开放平台获取
*/
'app_id' => 'wx75855734b0730d64', // AppID
'app_id' => 'wxeb2a189f2d90f623', // AppID
'secret' => 'a0abb5ab77ebcfbca7f9cdff4253de44', // AppSecret
'token' => 'your-token', // Token
'aes_key' => '', // EncodingAESKey,安全模式下请一定要填写!!!
... ...
... ... @@ -47,7 +47,10 @@ class OrderController extends HomeBaseController{
Db::name('order')->insert($order);
}catch (\Exception $exception){
Db::rollback();
$this->apiResponse(301,'订单生成失败,错误信息:'.$exception->getMessage());
$data=[
'state'=>false,
'message'=>$exception
];
}
Db::commit();
$this->apiResponse(200,'success');
... ...