有偿求教:微信支付 容器异常: Target

running8gubin

问题描述

求教:我在用微信支付时,经常出现报错:容器异常: Target [Psr\Container\ContainerInterface] is not instantiable while building [Yansongda\Supports\Pipeline]

程序代码

$config = config('pay');
            try {
                Pay::config($config);
                $pay_order = [
                    'out_trade_no' => $out_trade_no . '',
                    'description' => $order->body,
                    'amount' => [
                        'total' => intval($order->total_fee*100),
                        'currency' => 'CNY',
                    ],
                    'payer' => [
                        'openid' => $order->openid,
                    ]
                ];
                $result = Pay::wechat()->mini($pay_order);
                info(json_encode($pay_order));
            } catch (ContainerException $e) {
                info('wechat_pay_create_order:'.$e->getMessage().$out_trade_no);
                info(json_encode($pay_order));
                return json(['code'=>'err','msg'=>'支付异常,请重试','message'=>$e->getMessage()]);
            }

报错信息

容器异常: Target [Psr\Container\ContainerInterface] is not instantiable while building [Yansongda\Supports\Pipeline]

操作系统及workerman/webman等框架组件具体版本

workerman/webman 1.6.1

260 1 1
1个回答

running8gubin

基本解决,在业务代码中加上这个:

        Pay::config(config('pay'));
        $container = \Illuminate\Container\Container::getInstance();
        $container->instance(\Psr\Container\ContainerInterface::class, $container);
  • 暂无评论
×
🔝