如何檢測預期的URL並對其進行編輯,如果預期的URL有一個像一個特定的值:Laravel 4:檢測並更新目的URL
if($intended_url == 'http://.../logout')
{
//forget or update it
$intended_url = '/home';
}
如何檢測預期的URL並對其進行編輯,如果預期的URL有一個像一個特定的值:Laravel 4:檢測並更新目的URL
if($intended_url == 'http://.../logout')
{
//forget or update it
$intended_url = '/home';
}
使用...
if (location.href =="http://google.com"){
alert('its google');
} else{
alert('location is ' + location.href);
};
window.location是獲取此值的對象。
您可以通過使用
location.href = "http://hotmail.com";
我們談論Laravel框架! – mwafi
-1,錯誤的語言和不相關的問題 –
Laravel設置了預期URL的url.intended
會話變量賦值。
你可以這樣做:
Route::get('/logout', function(){
if (Session::get('url.intended')) == 'http://example.com/logout')
{
Session::put('url.intended', 'http://example.com/home');
}
});
你的意思是爲特定的URL - 或者是包含任何URL「退出」? – Laurence
我的意思是特定的網址 – mwafi