如何解决如何将数组传递给laravel json?
这是我的简单代码。
$country=['Bangladesh','Pakistan'];
$capital=['Dhaka','Islamabad'];
return response()->json([
'country'=>$country,'roll'=>$roll,]);
{
"country": [
"Bangladesh","Pakistan"
],"roll": [
'Dhaka','Islamabad'
]
}
但是我希望我的预期输出像.. 编辑:以下JSON无效(2个相同的密钥国家)
{
{
"country":"Bangladesh","capital":"Dhaka"
},{
"country":"Pakistan","capital":"Islamabad"
},
}
解决方法
尝试
redis-cli -h redis.myapp-ns.svc.cluster.local
telnet redis.myapp-ns.svc.cluster.local 6379
它将返回
$countries = ['India','Bangladesh','Pakistan'];
$capital = ['Delhi','Dhaka','Islamabad'];
$response = [];
foreach ($countries as $key => $country) {
$response[$key] = [
'country' => $country,'capital' => $capital[$key],];
}
return response()->json($response);
,
您的预期输出错误。您只是在输出json中不能拥有2个相同的键(country
)。您应该将国家和首都封装在单独的{}中。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。