获取 laravel 中的上一个 url
Get previous url in laravel
我正在尝试在 laravel 中获取以前的 url,我试过这段代码,
echo redirect()->back()->getTargetUrl();
die();
当我简单地回显这段代码时,这正确地 returns url,但是当我尝试将它保存在某个变量中时,它不起作用
您可以在文档中找到它。
https://laravel.com/docs/8.x/urls#accessing-the-current-url
// Get the current URL without the query string...
echo url()->current();
// Get the current URL including the query string...
echo url()->full();
// Get the full URL for the previous request...
echo url()->previous();
我正在尝试在 laravel 中获取以前的 url,我试过这段代码,
echo redirect()->back()->getTargetUrl();
die();
当我简单地回显这段代码时,这正确地 returns url,但是当我尝试将它保存在某个变量中时,它不起作用
您可以在文档中找到它。
https://laravel.com/docs/8.x/urls#accessing-the-current-url
// Get the current URL without the query string...
echo url()->current();
// Get the current URL including the query string...
echo url()->full();
// Get the full URL for the previous request...
echo url()->previous();