Get all attributes of extraFields in Yii2

287 Views Asked by At

To get attribute from extraFields() url is like

 organizations/6/location?expands=address,city (i have 10 attribute)

But how can i get all these at once from extraFields()

something like this organizations/6/location?expands=true or all

This contoller

public function actionIndex($id) {
   $locations= Location::findAll($id);

    return new ArrayDataProvider([
        'allModels' => $locations,

        'pagination' => false,
    ]);

And this is my Model code

public function fields() {
    return [
        'id',
        'display',
    ];
}

public function extraFields() {
    return [
        'address',
        'city',
        'state',
        'country',
        'zipcode',
        'country_code',
        'phone_number',
    ];
}
2

There are 2 best solutions below

3
On

I dont really understand your question, but i think you want to do that :

organizations/6/location?expands=true&address=myadresse&city=mycity ....

Can you give us some code to help you ?

0
On

You have a typo in the URL, it should be

expand=address,city not expandS=address,city

See https://www.yiiframework.com/doc/guide/2.0/en/rest-resources#overriding-extra-fields