FOSRestBundle と JMSSerializationBundle を使用しています。コレクションを取得すると、次のようなものが得られます。
{ "entities": [
{
"id": 1,
"mainDiagnosticName": "diagnostic",
"mainDiagnosticCode": "code",
"startDate": "2011-01-04T21:30:40+0000",
"endDate": null,
"patient": null
}]
}
私はエンティティのものを望んでいません。ただ欲しい:
[
{
"id": 1,
"mainDiagnosticName": "diagnostic",
"mainDiagnosticCode": "code",
"startDate": "2011-01-04T21:30:40+0000",
"endDate": null,
"patient": null
}]
これはどのように行うことができますか?
どうもありがとう。