简述
请求由yii\web\Request对象表示,它提供有关 HTTP 标头、请求参数、cookie 等的信息。
get()和post()方法返回请求组件的请求参数。
示例-
第 1 步- 将 actionTestGet 函数添加到基本应用程序模板的SiteController。
第 2 步- 现在转到http://localhost:8080/index.php?r=site/testget&id=1&name=jc2182&message=welcome,您将看到以下内容。
要检索其他请求方法(PATCH、DELETE 等)的参数,请使用yii\web\Request::getBodyParam()方法。
要获取当前请求的 HTTP 方法,请使用Yii::$app→request→method属性。
第 3 步 - 修改actionTestGet函数,如以下代码所示。
第 4 步- 转到http://localhost:8080/index.php?r=site/test-get。您将看到以下内容。
请求组件提供了许多属性来检查请求的 URL。
第 5 步 - 修改actionTestGet函数如下。
第 6 步- 在 Web 浏览器的地址栏中,键入http://localhost:8080/index.php?r=site/testget&id=1&name=jc2182&message=welcome,您将看到以下内容。
第 7 步- 要获取 HTTP 标头信息,您可以使用yii\web\Request::$headers属性。以这种方式修改actionTestGet函数。
第 8 步- 如果您访问 URL http://localhost:8080/index.php?r=site/testget&id=1&name=jc2182&message=welcome,您将看到如下代码所示的输出。
要获取客户端计算机的主机名和 IP 地址,请使用userHost和userIP属性。
第 9 步- 以这种方式修改actionTestGet函数。
第 10 步- 转到地址http://localhost:8080/index.php?r=site/test-get,您会看到以下屏幕。
