返回与 GET 等效的查询字符串数据

你可以将查询字符串数据检索为 Array。

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

你可以检索特定密钥的发布数据。

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

检索特定键值

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

检索嵌套数组的特定键值

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