接收get请求:$this->request->get()
接收具体的get请求,如:传参为id $this->request->get('id')
接收具体的post请求,如:传参为name $this->request->post('name')
接收全部的post请求参数:$this->request->post()
接收的参数为数组:$this->request->post(‘/a’)
其他接收参数的方式:

接收get请求:$this->request->get()
接收具体的get请求,如:传参为id $this->request->get('id')
接收具体的post请求,如:传参为name $this->request->post('name')
接收全部的post请求参数:$this->request->post()
接收的参数为数组:$this->request->post(‘/a’)
其他接收参数的方式: