有人可以解释 Laravel 4 UrlGenerator 类的语法吗?我在文档中找不到它。
我有以下路线:
Route::resource('users', 'UsersController');
我花了很长时间才弄清楚这一点:
{{ Url::action('UsersController@show', ['users' => '123']) }}
生成所需的 html:
http://localhost/l4/public/users/123
我查看了 UrlGenerator.php
/**
* Get the URL to a controller action.
*
* @param string $action
* @param mixed $parameters
* @param bool $absolute
* @return string
*/
public function action($action, $parameters = array(), $absolute = true)
..但这并没有真正让我走得更远。
我可以通过$parameters
什么?
我现在知道这['users' => '123']
行得通,但是这是什么背景?还有其他传递数据的方法吗?