求教:我在用微信支付时,经常出现报错:容器异常: 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 1.6.1
基本解决,在业务代码中加上这个: