您好我为我的laravel应用程序创建了我的评论系统但是当我尝试评论时我收到此错误...基本上当用户没有登录并且他试图评论并提交它时,它应该将他重定向到登录页面,所以我的CreateRequest文件是这个
<?php
namespace App\Http\Requests\Comment;
use App\Http\Requests\Request;
use App\Repositories\Image\ImageRepository;
class CreateRequest extends Request {
/**
* Determine if the user is authorized to make this request.
*
* @param ImageRepository $image
* @return bool
*/
public function authorize(ImageRepository $image) {
$image = $image->getById($this->route('id'))->first();
if (!$image) {
return false;
}
return auth()->check();
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules() {
return [
'comment' => ['required', 'min:2'],
];
}
/**
* @return \Illuminate\Http\RedirectResponse
*/
public function forbiddenResponse() {
return redirect()->route('login');
}
}
我的App\Http\Requests\Request
文件就是这个
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
abstract class Request extends FormRequest {
public function authorize() {
return true;
}
}
如果我删除
public function authorize() {
return true;
}
然后评论工作,如果用户没有登录,用户被重定向到登录页面,但我的登录不起作用,当我尝试登录时,我得到禁止
我在这个项目的基础上开发我的应用程序https://github.com/laravelish/EasyAdmin 希望有人能帮助我
答案 0 :(得分:2)
您已在抽象的Request类中定义了authorize
方法:
public function authorize() {
return true;
}
请注意,它不接受任何参数。现在,如果您扩展此抽象类(就像使用CreateRequest一样)并编写authorize
方法,则必须使用相同的签名。具体来说:authorize
无法接受任何参数,因为它不在抽象类中。
如果要从抽象类中删除authorize
方法,则此特定错误将消失。但是,我不确定这会解决您的问题。我不认为Laravel为authorize
方法提供依赖注入,你不能像这样注入你的存储库。
这是解决这两个问题的一种方法:
public function authorize() {
$image = app(ImageRepository::class)->getById($this->route('id'))->first();
...