2

我只想保护对我的索引的 POST 请求,我该怎么做?

public $restful = true;

public function __construct()
{
    parent::__construct(); 
            //this does not work
    $this->filter('before', 'auth')->only(array('post_index'));
}

public function get_index()
{
            //I do not want to protect this
    return Response::eloquent(Model::all()); 
}

public function post_index()
{
            //I want to protect only this call
}
4

1 回答 1

4

您快到了!如果您只想保护 POST 请求,请结合使用only()on()方法。尝试:

$this->filter('before', 'auth')->only('index')->on('post');

这是供参考的api页面。

于 2013-02-14T00:49:37.040 回答