gpt4 book ai didi

laravel - 如何从 Laravel 5.0 中的 Request 类获取所有查询字符串

转载 作者:行者123 更新时间:2023-12-01 22:25:51 25 4
gpt4 key购买 nike

在我的项目中,我使用支付网关和 Omnipay想知道它是从“返回网站按钮”重定向还是通过单击取消按钮重定向。

它重定向到一个名为 complete 的页面,即使在重定向时也是如此。

我检查了代码,我看到了:

$payerId = Request::query('PayerID');
$token = Request::query('token');

所以现在我想获取所有查询值,如 payerID 等。检查是否有迹象表明它的重定向或成功完成。

我知道如何通过这个网关进行支付,但是在这个项目中我遇到了一些麻烦。

谢谢。

最佳答案

我个人用过这个:

public function foo(Request $request)
{
$all = $request->all(); // there you have an array with all input submitted
//do something with input
return redirect()->action('HomeController@index');
}

关于laravel - 如何从 Laravel 5.0 中的 Request 类获取所有查询字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34792422/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com