我想傳遞多個參數到Laravel 4.我試過下面的代碼URL類:Laravel創建多個參數的URL
<li>
<a href="{{ URL::to('questions/', $chapter->id, false); }}">
<span>Chapter {{ $chapter->chapter_num }}: {{ $chapter->name }}</span>
</a>
</li>
這似乎是一個參數工作。我如何傳遞多個參數?
我想傳遞多個參數到Laravel 4.我試過下面的代碼URL類:Laravel創建多個參數的URL
<li>
<a href="{{ URL::to('questions/', $chapter->id, false); }}">
<span>Chapter {{ $chapter->chapter_num }}: {{ $chapter->name }}</span>
</a>
</li>
這似乎是一個參數工作。我如何傳遞多個參數?
將參數傳遞給數組。例如:
array($chapter->id, $parameter2, $parameter3, false)
這也可以幫助:http://laravel.com/api/source-class-Illuminate.Routing.UrlGenerator.html#76-98
根據文檔,您可以將多個參數作爲數組傳遞。
這應該工作: URL::to('questions/', array($chapter->id,$other->propr), false)
希望它能幫助!