如何从 MySQL 检索数据到 JSON?
我有一个 Symfony 项目,我想将 MySQL 表中的所有行存储到 JSON。目前我的表中有五行,但在我的浏览器中它只返回五个空值 {"results":[{},{},{},{},{}]}
I我想我做对了一些事情,但不是全部。我的代码中缺少什么?
#[Route('/budget/api', name: 'budget-api')]
public function index(Request $request, BudgetRepository $repository)
{
$results = $repository->findAll();
return $this->json(['results' => $results]);
}
I have a Symfony project where I want to store the all the rows from my MySQL table to JSON. Currently there are five rows in my table, but in my browser it only returns five empty values as {"results":[{},{},{},{},{}]}
I guess I have done something right, but not everything. What am I missing in my code?
#[Route('/budget/api', name: 'budget-api')]
public function index(Request $request, BudgetRepository $repository)
{
$results = $repository->findAll();
return $this->json(['results' => $results]);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试 createQueryBuilder 它很有用。
Try createQueryBuilder its usefull.
您可以使用序列化器或像这样自己重新创建数组
You can use the serializer or re-create the array yourself like that
您可以通过使用 Serializer 将对象数组转换为 JSON 来实现此目的。还有其他方法可以实现此目的,例如使用 jsonResponse
仅示例:
You can achieve this by Using a Serializer to convert the array of objects into JSON. There are other ways to achieve this like using jsonResponse for example. But the serializer is the most robust way imo.
Example only: