我正在为一个网站开发一个帮助中心,我已经在Laracast Forums问了一个问题但我还没有得到解决方案,不幸的是,在这里我们路线/网址路径:
routes.php文件
Route::resource('admin/help-centre/category', 'AdminHelpCentreCategoryController');
Route::resource('admin/help-centre/category/{category}/section', 'AdminHelpCentreSectionController');
Route::resource('admin/help-centre/category/{category}/section/{section}/article', 'AdminHelpCentreArticleController');
类别和部分验证按预期工作,但出于某种原因,即使它具有相同的逻辑,据我所知,文章验证似乎没有按预期工作。以下是我的验证规则(我删除了多余的内容,只是离开了标题字段):
HelpCentreCategoryRequest.php
/* Insert ------------------------------------- */
$rules = [
'title' => 'required|min:3|unique:help_centre_categories',
];
/* Update ------------------------------------- */
if ($method == 'PATCH') {
$rules = [
'title' => 'required|min:3|unique:help_centre_categories,title,'.$this->category->id,
];
}
HelpCentreSectionRequest.php
/* Insert ------------------------------------- */
$rules = [
'title' => 'required|min:3|unique:help_centre_sections,title,NULL,id,category_id,'.$this->category->id,
];
/* Update ------------------------------------- */
if ($method == 'PATCH') {
$rules = [
'title' => 'required|min:3|unique:help_centre_sections,title,'.$this->section->id.',id,category_id,'.$this->category->id,
];
}
我将解释只是为了澄清...对于类别,在INSERT
它会检查该标题是否已经存在,如果已存在,则它不会验证。 UPDATE
完全相同,只是它在检查中忽略了它,所以它仍然可以验证标题是否没有被更改。所以我输入了2个类别,一个名为Category 1
,另一个名为Category 2
。
对于Section请求也是如此,除了它只检查您正在创建它的指定类别中的Sections。我已经测试了它并且它可以工作。我可以将foo
和bar
插入Category 1
,将foo
和bar
插入Category 2
,但如果我尝试添加另一个foo
进入Category 1
或Category 2
,它没有验证导致它重复,这是正确的。但是,如果我尝试将foo
中的Category 1
更新为bar
,它就不会允许它,如果我尝试更新foo
而不进行任何更改,忽略自己(行)允许它通过而不抛出验证错误。所以一切都按照这个原则运作。
现在,对于我的文章验证,我使用了与章节验证完全相同的流程/查询验证,除了更改表/列/变量以适应,如下所示:
HelpCentreArticleRequest.php
/* Insert ------------------------------------- */
$rules = [
'title' => 'required|min:3|unique:help_centre_articles,title,NULL,id,section_id,'.$this->section->id,
];
/* Update ------------------------------------- */
if ($method == 'PATCH') {
$rules = [
'title' => 'required|min:3|unique:help_centre_articles,title,'.$this->article->id.',id,section_id,'.$this->section->id,
];
}
这应该与HelpCentreSectionRequest.php
完全相同,因此在类别的每个部分中只允许一个文章标题的副本,同时允许相同标题的文章但在类别的不同部分。该部分工作正常,但如果我在foo
中插入bar
和Category 1 / Section 1
,然后将foo
更新为bar
,则允许更改并向我,它不应该bar
已经存在Category 1 / Section 1
。
我明显错了,否则它会像我预期的那样工作。但我无法看出问题所在?
这是数据库模式,只是为了节省任何麻烦,并且可以确认表/列名称匹配(再次删除外键和额外列):
Schema::create('help_centre_categories', function(Blueprint $table)
{
$table->increments('id')->unsigned();
$table->string('title');
});
Schema::create('help_centre_sections', function(Blueprint $table)
{
$table->increments('id')->unsigned();
$table->integer('category_id')->unsigned();
$table->string('title');
});
Schema::create('help_centre_articles', function(Blueprint $table)
{
$table->increments('id')->unsigned();
$table->integer('category_id')->unsigned();
$table->integer('section_id')->unsigned();
$table->string('title');
});
我还检查了条款请求中的if
语句肯定是在顶部的Laracast论坛链接中提到的。您还可以找到Valiation文档here,但为了便于阅读,这是我正在使用的主要部分:
Adding Additional Where Clauses
You may also specify more conditions that will be added as "where" clauses to the query:
'email' => 'unique:users,email_address,NULL,id,account_id,1'
In the rule above, only rows with an account_id of 1 would be included in the unique check.
答案 0 :(得分:1)
好吧,首先你的代码很难分析,如果我是你,我会使用数组语法:
$rules = [
'title' => ['required'. 'min:3'],
];
$uniqueRule = 'unique:help_centre_categories';
/* Update ------------------------------------- */
if ($method == 'PATCH') {
$uniqueRule.='title,'.$this->category->id
}
$rules['title'][] = $uniqueRule;
第二件事是$method
变量。我不知道它来自哪里,但假设它具有正确的值,你应该以这种方式改变你的条件:
if (strtoupper($method) == 'PATCH' || strtoupper($method) == 'PUT') {
...
}
最后,如果我尝试将一个Request
类用于存储和更新,我通常会这样做:
$segments = $this->segments();
$id = intval(end($segments));
if ($id != 0) {
// now you know it's update
}
如果您的方法不起作用,您可以尝试以上方法。
修改强>
在Request
对象中,您可以使用getMethod()
方法,例如:
public function rules()
{
$method = $this->getMethod();
if ($method == 'PUT' || $method == 'PATCH') {
// now you do what you want for update
}
// rest of code goes here
}
要进行更新,您应该验证$ method是PUT
还是PATCH