0

有没有办法在 Laravel 4 中重现一个 Restful url,将变量传递给它以在模拟 GET 的浏览器中进行测试?

当我这样做时:

http://172.17.0.2/vevey/pagseguro/notification/notificationCode=713B60-785F465F4619-DAA4BD3F89D4-1E090D

我明白了:

结果

当它应该只是

'notificationCode' => string (56) "713B60-785F465F4619-DAA4BD3F89D4-1E090D"
4

1 回答 1

2

为什么不使用这样的路线:

Route::get('.../notification/notificationCode/{code}', ...)->where('code', '[a-fA-F0-9\-]');

{code}在您的控制器函数中获取参数?

于 2013-08-15T14:22:46.810 回答