BDY
Results
1
issues of
BDY
## 包版本号 3.7.1 ## 问题描述 接口调用没有问题,但是使用支付宝网页支付提示 missing-method。 根据支付宝官网[文档](https://opendocs.alipay.com/support/04nsok#%E9%97%AE%E9%A2%98%E5%8E%9F%E5%9B%A0): 提示需要设置method参数,但是不清楚在哪里设置 ## 你的代码 ``` PHP # 支付调用 Pay::alipay(config('pay'))->web([ 'out_trade_no' => ’zfb20240903174908178353‘, 'total_amount' => 10000, 'subject' => '产品支付', '_method' => 'get' // get、post都设置过...