We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chain
uri_template
Ity/app/Http/Controllers/Controller.php
Lines 107 to 108 in b626989
当然这里的拼接方式是可以工作的,不过仍然建议用标准用法来构造请求,形如:
->chain('v3/pay/transactions/id/{transaction_id}') ->get(['query' => ['mchid' => $merchantId], 'transaction_id' => $transactionId])
另外建议增加依赖 iwechatpay/openapi dev包,上述代码即可以在JB IDE上书写成
JB
->v3->pay->transactions->id->_transaction_id_ ->get(['query' => ['mchid' => $merchantId], 'transaction_id' => $transactionId])
即带请求数据结构基础语法提示。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Ity/app/Http/Controllers/Controller.php
Lines 107 to 108 in b626989
当然这里的拼接方式是可以工作的,不过仍然建议用标准用法来构造请求,形如:
另外建议增加依赖 iwechatpay/openapi dev包,上述代码即可以在
JB
IDE上书写成即带请求数据结构基础语法提示。
The text was updated successfully, but these errors were encountered: