【发布时间】:2014-01-10 13:53:44
【问题描述】:
我正在尝试将我的验证错误返回到 Angular,但我不知道如何以格式数组('验证中的字段'=>'错误消息')返回它们。这个确切的数组保存在 errors->messages() 中,但它是受保护的属性。
这是我的代码
validator.php
<?php namespace TrainerCompare\Services\Validation;
use Validator as V;
/**
*
*/
abstract class Validator
{
protected $errors;
public function validate($data)
{
$validator = V::make($data, static::$rules);
if ($validator->fails()) {
$this->errors = $validator->messages();
return false;
}
return true;
}
public function errors()
{
return $this->errors;
}
}
控制器
<?php
use TrainerCompare\Services\Validation\ProgramValidator;
class ProgramsController extends BaseController
{
protected $program;
protected $validator;
public function __construct(Program $program, ProgramValidator $validator)
{
$this->program = $program;
$this->validator = $validator;
}
/**
* Store a newly created resource in storage.
*
* @return Response
*/
public function store()
{
$input = Input::all();
$v = $this->validator->validate($input);
if ($v == true) {
//$this->program->create($input);
return Response::json(
array('success' => true)
);
} else {
$errors = $this->validator->errors();
return Response::json(
array('errors' => $errors)
);
}
}
}
这将返回 json
{"errors":{}}
如果我将控制器更改为
$errors = $this->calidator->errors()->all();
这是返回
{"errors":["The title field is required.","The focus field is required.","The desc field is required."]}
我真正想要返回的是
{"errors":[title: "The title field is required.",focus: "The focus field is required.",desc: "The desc field is required."]}
【问题讨论】: