Return JSON data with predefined key Yii2 -


i use yii2 , created restful api service. in app want return json data predefined key responses. example:

default respons:

[   {     "id": 1,     "title": "brooklyn"   },   {     "id": 2,     "title": "financial district"   },   {     "id": 4,     "title": "social district"   } ] 

but want smth that:

"data": [       {         "id": 1,         "title": "brooklyn"       },       {         "id": 2,         "title": "financial district"       },       {         "id": 4,         "title": "social district"       } ] 

you should customize rest serializer, in controller :

public $serializer = [     'class' => 'yii\rest\serializer',     'collectionenvelope' => 'data', ]; 

read more.


Comments

Popular posts from this blog

javascript - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

ionic framework - Meteor - Error: Failed to execute 'insertBefore' on 'Node' -