Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
a671b5f0
Commit
a671b5f0
authored
Nov 20, 2014
by
Nobuo Kihara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs/guide-ja/runtime-requests.md - WIP [ci skip]
parent
613b4512
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
34 deletions
+34
-34
runtime-requests.md
docs/guide-ja/runtime-requests.md
+34
-34
No files found.
docs/guide-ja/runtime-requests.md
View file @
a671b5f0
Requests
リクエスト
========
========
==
Requests made to an application are represented in terms of
[
[yii\web\Request
]
] objects which provide information
アプリケーションに対するリクエストは、リクエストのパラメータ、HTTP ヘッダ、クッキーなどの情報を提供する
[
[yii\web\Request
]
]
such as request parameters, HTTP headers, cookies, etc. For a given request, you can get access to the corresponding
オブジェクトの形で表されます。与えられたリクエストに対応するリクエストオブジェクトには、
request object via the
`request`
[
application component
](
structure-application-components.md
)
which is an instance
既定では
[
[yii\web\Request
]
] のインスタンスである
`request`
[
アプリケーションコンポーネント
](
structure-application-components.md
)
of
[
[yii\web\Request
]
], by default. In this section, we will describe how you can make use of this component in your applications.
を通じてアクセスすることが出来ます。この節では、アプリケーションの中でこのコンポーネントをどのように利用できるかを説明します。
##
Request Parameters
<a name="request-parameters"></a>
##
リクエストのパラメータ
<a name="request-parameters"></a>
To get request parameters, you can call
[
[yii\web\Request::get()|get()
]
] and
[
[yii\web\Request::post()|post()
]
] methods
リクエストのパラメータを取得するためには、
`request`
コンポーネントの
[
[yii\web\Request::get()|get()
]
] および
of the
`request`
component. They return the values of
`$_GET`
and
`$_POST`
, respectively. For example,
[
[yii\web\Request::post()|post()
]
] メソッドを呼ぶことが出来ます。これらは、ぞれぞれ、
`$_GET`
と
`$_POST`
の値を返します。例えば、
```
php
```
php
$request
=
Yii
::
$app
->
request
;
$request
=
Yii
::
$app
->
request
;
$get
=
$request
->
get
();
$get
=
$request
->
get
();
//
equivalent to: $get = $_GET;
//
$get = $_GET; と同等
$id
=
$request
->
get
(
'id'
);
$id
=
$request
->
get
(
'id'
);
//
equivalent to: $id = isset($_GET['id']) ? $_GET['id'] : null;
//
$id = isset($_GET['id']) ? $_GET['id'] : null; と同等
$id
=
$request
->
get
(
'id'
,
1
);
$id
=
$request
->
get
(
'id'
,
1
);
//
equivalent to: $id = isset($_GET['id']) ? $_GET['id'] : 1;
//
$id = isset($_GET['id']) ? $_GET['id'] : 1; と同等
$post
=
$request
->
post
();
$post
=
$request
->
post
();
//
equivalent to: $post = $_POST;
//
$post = $_POST; と同等
$name
=
$request
->
post
(
'name'
);
$name
=
$request
->
post
(
'name'
);
//
equivalent to: $name = isset($_POST['name']) ? $_POST['name'] : null;
//
$name = isset($_POST['name']) ? $_POST['name'] : null; と同等
$name
=
$request
->
post
(
'name'
,
''
);
$name
=
$request
->
post
(
'name'
,
''
);
//
equivalent to: $name = isset($_POST['name']) ? $_POST['name'] : '';
//
$name = isset($_POST['name']) ? $_POST['name'] : ''; と同等
```
```
> Info
: Instead of directly accessing `$_GET` and `$_POST` to retrieve the request parameters, it is recommended
> Info
|情報: 直接に `$_GET` と `$_POST` にアクセスしてリクエストのパラメータを読み出す代りに、上記に示されているように
that you get them via the
`request`
component like shown above. This will make writing tests easier because
`request`
コンポーネントを通じてそれらを取得することが推奨されます。このようにすると、ダミーのリクエストデータを持った
you can create a mock request component with faked request data.
模擬リクエストコンポーネントを作ることが出来るため、テストを書くことがより容易になります。
When implementing
[
RESTful APIs
](
rest-quick-start.md
)
, you often need to retrieve parameters that are submitted
[
RESTful API
](
rest-quick-start.md
)
を実装するときは、PUT、PATCH またはその他の
[
リクエストメソッド
](
#request-methods
)
via PUT, PATCH or other
[
request methods
](
#request-methods
)
. You can get these parameters by calling
によって送信されたパラメータを読み出さなければならないことがよくあります。そういうパラメータは
[
[yii\web\Request::getBodyParam()
]
]
the
[
[yii\web\Request::getBodyParam()
]
] methods. For example,
メソッドを呼ぶことで取得することが出来ます。例えば、
```
php
```
php
$request
=
Yii
::
$app
->
request
;
$request
=
Yii
::
$app
->
request
;
//
returns all parameters
//
全てのパラメータを返す
$params
=
$request
->
bodyParams
;
$params
=
$request
->
bodyParams
;
//
returns the parameter "id"
//
パラメータ "id" を返す
$param
=
$request
->
getBodyParam
(
'id'
);
$param
=
$request
->
getBodyParam
(
'id'
);
```
```
> Info
: Unlike `GET` parameters, parameters submitted via `POST`, `PUT`, `PATCH` etc. are sent in the request body.
> Info
|情報: `GET` パラメータとは異なって、`POST`、`PUT`、`PATCH` などで送信されたパラメータは、リクエストのボディの中で送られます。
The
`request`
component will parse these parameters when you access them through the methods described above.
上述のメソッドによってこういうパラメータにアクセスすると、
`request`
コンポーネントがパラメータを解析します。
You can customize the way how these parameters are parsed by configuring the
[
[yii\web\Request::parsers
]
] property.
[
[yii\web\Request::parsers
]
] プロパティを構成することによって、これらのパラメータが解析される方法をカスタマイズすることが出来ます。
##
Request Methods
<a name="request-methods"></a>
##
リクエストメソッド
<a name="request-methods"></a>
You can get the HTTP method used by the current request via the expression
`Yii::$app->request->method`
.
現在のリクエストに使用された HTTP メソッドは、
`Yii::$app->request->method`
という式によって取得することが出来ます。
A whole set of boolean properties are also provided for you to check if the current method is of certain type.
現在のメソッドが特定のタイプであるかどうかをチェックするための、一連の真偽値のプロパティも提供されています。
For example,
例えば、
```
php
```
php
$request
=
Yii
::
$app
->
request
;
$request
=
Yii
::
$app
->
request
;
if
(
$request
->
isAjax
)
{
//
the request is an AJAX request
}
if
(
$request
->
isAjax
)
{
//
リクエストは AJAX リクエスト
}
if
(
$request
->
isGet
)
{
//
the request method is
GET }
if
(
$request
->
isGet
)
{
//
リクエストメソッドは
GET }
if
(
$request
->
isPost
)
{
//
the request method is
POST }
if
(
$request
->
isPost
)
{
//
リクエストメソッドは
POST }
if
(
$request
->
isPut
)
{
//
the request method is
PUT }
if
(
$request
->
isPut
)
{
//
リクエストメソッドは
PUT }
```
```
## Request URLs <a name="request-urls"></a>
## Request URLs <a name="request-urls"></a>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment