我使用Backbone和Marionette。如何在Backbone中獲取網址參數?
我有一個鏈接<a>
標籤我傳遞了很少的參數,我怎麼能在其他頁面使用Backbone提取這些值?
<a href="http://localhost.com:8080/help/?name=matth&age=25&[email protected]">View Details</a>
地址欄網址:
http://localhost.com:8080/help/?name=matth&age=25&[email protected] 44
使用PHP,這很簡單:
$Url = $_GET['state']."#".$_GET['city'];
如何將我的主幹應用程序中實現呢?
[使用querystring導航路線]的可能重複(http://stackoverflow.com/questions/11671400/navigate-route-with-querystring) –