我正在返回用户保存的所有送货地址,但有一些值留空,并且其中的输出为空。如何将 NULL 值转换为空白(“”)。我在互联网上查看了许多解决方案,但无法使其正常工作。API链接:https://androidapp.factory2homes.com/api/shippings/3$address = DB::table('shippings')->where('user_id' , $user_id)->get();
return $address;
1 回答
守着一只汪
TA贡献1872条经验 获得超3个赞
您可以只映射返回值,如下所示:
return $address = DB::table('shippings')
->where('user_id' , $user_id)
->get()
->map(function ($item) {
$mapped = [];
foreach ($item as $key => $value) {
$mapped[$key] = $value ?? ' ';
}
return $mapped
});
- 1 回答
- 0 关注
- 169 浏览
添加回答
举报
0/150
提交
取消