我正在使用Laravel for VueJS前端SPA构建API。
我需要接受并将日期返回为'd-m-Y',而不是存储在DB中的'Y-m-d'。 Data mutator工作正常,我设法在给定日期保存它, 但是当我跑步时:
$active = Announcement::where('group_id', $this->user->group_id)->where('dateTo', '>=', Carbon::today())->get();
return response()->json($active);
我正在获取纯数据库数据,而不是将其格式化。
例如,我有dateTo
字段需要格式化:
public function getDateToAttribute($value)
{
$date = Carbon::createFromFormat('Y-m-d', $value);
return $date->format('d-m-Y');
}
我该怎么办?
答案 0 :(得分:6)
正如@Jared所说,访问者/ mutator仅在您的应用程序调用时才存在。因此,在以JSON形式返回的集合中,不存在访问器/增变器。 制作一个循环来调用所有你需要的访问者/ mutator是太胖了,但是Laravel带有一个内置的解决方案
在模型Announcement.php
中,您只需指定将始终附加在请求中的访问者/变更者。
protected $appends = array('dateTo');
使用此解决方案,每个请求都将包含一个dateTo参数,您可以根据需要进行格式化。
迎接!
PS:您可以根据您的请求更改$appends
数组,因此返回JSON的所有请求都会发送dateTo
个参数,但另一个赢了&#39 ;吨
答案 1 :(得分:0)
当您将模型转换为数组或json时,Laravel将运行访问器。
所以我会将你的代码更新为:
$active = Announcement::where('group_id', $this->user->group_id)->where('dateTo', '>=', Carbon::today())->get();
return response()->json($active->toArray());
答案 2 :(得分:0)
试试这个
input
属性
$active = Announcement::where('group_id', $this->user->group_id)->where('dateTo', '>=', Carbon::today())->get();
foreach($active as $activeRecords){
print_r($activeRecords->dateTo);
}