返回與 GET 等效的查詢字串資料

你可以將查詢字串資料檢索為 Array。

$post_data= $this->request->query;

你可以檢索特定金鑰的釋出資料。

$this->request->query['field'];

檢索特定鍵值

$this->request->query('key_name');

檢索巢狀陣列的特定鍵值

$this->request->query('data.subfield');