0
私は変更は私がコントローラー・コードcakephpのjson配列名を変更するには?
if ($this->request->is('get')) {
$itemname= $this->request->query('item_name');
$searchitem = $this->MbPriceList->find('all')
->contain(['MbItemList' => function ($q) {
return $q->select(['item_name']);
}])
->select(['MbItemList.item_name', 'id']);
$this->set([
'response' => $searchitem,
'_serialize' => ['response']
]);
}