我有一张表(比如myreferencetable),名单列表如下:
id | name | abbrv
- - - - - - - - - - - - - - - - -
1 | ABCDEF | abc
2 | TestState |
3 | UVWXYZ | xyz
在我的模型中,我为模型创建了一个属性:
protected $appends = [
'full_name'
];
现在, 我想查询数据库,以便我得到详细信息:
[
{
"name" : ABCDEF
"full_name" : ABCDEF (abc)
},
{
"name" : TestState,
"full_name" : TestState
},
{
"name" : UVWXYZ,
"full_name" : UVWXYZ (xyz)
}
]
即。字符串连接:
<名称> //强制
(< abbrv>)// if not null
现在,我的查询为:
public function getFullNameAttribute()
{
return MyReferenceTable::select(DB::raw('concat(name," (", abbrv, ")")'));
}
但它返回:
[
{
"name" : ABCDEF
"full_name" : {}
},
{
"name" : TestState,
"full_name" : {}
},
{
"name" : UVWXYZ(xyz)
"full_name" : {}
}
]
我需要返回名字+ [“(abbrv)”] //其中[value] = if not null
答案 0 :(得分:4)
试试这个方法
public function getFullNameAttribute()
{
return $this->name . ($this->abbrv ? ' (' . $this->abbrv . ')' : '');
}
答案 1 :(得分:0)
试试这个
public function getFullNameAttribute()
{
if( ! $this->abbrv)
return $this->name;
return sprintf('%s (%s)', $this->name, $this->abbrv);
}
答案 2 :(得分:0)
致力于:
public function getFullNameAttribute()
{
return trim($this->name . (is_null($this->abbrv)? "" : " (" . $this->abbrv . ")"));
}
答案 3 :(得分:0)
你可以(ab)使用"expandable"
- 处理NULL
函数和连接运算符CONCAT()
之间的差异,即:
||
应该这样做。