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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
cb9a1c2e
Commit
cb9a1c2e
authored
Dec 29, 2014
by
Nobuo Kihara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs/guide-ja ^ changed "レスポンスの書式設定" to "レスポンス形式の設定" [ci skip]
parent
07d062e6
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
README.md
docs/guide-ja/README.md
+2
-2
rest-controllers.md
docs/guide-ja/rest-controllers.md
+1
-1
rest-quick-start.md
docs/guide-ja/rest-quick-start.md
+1
-1
structure-models.md
docs/guide-ja/structure-models.md
+1
-1
No files found.
docs/guide-ja/README.md
View file @
cb9a1c2e
...
...
@@ -131,8 +131,8 @@ RESTful ウェブサービス
*
[
クイックスタート
](
rest-quick-start.md
)
*
[
リソース
](
rest-resources.md
)
*
[
コントローラ
](
rest-controllers.md
)
*
**翻訳中**
[
ルーティング
](
rest-routing.md
)
*
**翻訳中**
[
レスポンスの書式
設定
](
rest-response-formatting.md
)
*
[
ルーティング
](
rest-routing.md
)
*
[
レスポンス形式の
設定
](
rest-response-formatting.md
)
*
**翻訳中**
[
認証
](
rest-authentication.md
)
*
**翻訳中**
[
転送レート制限
](
rest-rate-limiting.md
)
*
**翻訳中**
[
バージョン管理
](
rest-versioning.md
)
...
...
docs/guide-ja/rest-controllers.md
View file @
cb9a1c2e
...
...
@@ -47,7 +47,7 @@ public function actionView($id)
具体的に言うと、次のフィルタがリストされた順に従って実行されます。
*
[
[yii\filters\ContentNegotiator|contentNegotiator
]
]: コンテントネゴシエーションをサポート。
[
レスポンス
の書式
設定
](
rest-response-formatting.md
)
の節で説明します。
[
レスポンス
形式の
設定
](
rest-response-formatting.md
)
の節で説明します。
*
[
[yii\filters\VerbFilter|verbFilter
]
]: HTTP メソッドのバリデーションをサポート。
*
[
[yii\filters\AuthMethod|authenticator
]
]: ユーザ認証をサポート。
[
認証
](
rest-authentication.md
)
の節で説明します。
...
...
docs/guide-ja/rest-quick-start.md
View file @
cb9a1c2e
...
...
@@ -182,7 +182,7 @@ Content-Type: application/json; charset=UTF-8
> Info|情報: 気がついたかも知れませんが、`http://localhost/users` の結果は、いくつかの公開すべきでないフィールド、例えば `password_hash` や `auth_key` を含んでいます。
> 当然ながら、これらが API の結果に出現することは避けたいでしょう。
> [レスポンス
の書式
設定](rest-response-formatting.md) の節で説明されているように、これらのフィールドを除外することは出来ますし、また、除外しなければなりません。
> [レスポンス
形式の
設定](rest-response-formatting.md) の節で説明されているように、これらのフィールドを除外することは出来ますし、また、除外しなければなりません。
## まとめ <a name="summary"></a>
...
...
docs/guide-ja/structure-models.md
View file @
cb9a1c2e
...
...
@@ -396,7 +396,7 @@ $array = $post->attributes;
このメソッドの既定の動作は
[
[yii\base\Model::$attributes
]
] のそれと同じものです。
しかしながら、このメソッドを使うと、どのデータ項目 (
*フィールド*
と呼ばれます)
を結果の配列に入れるか、そして、その項目にどのような書式を適用するかを選ぶことが出来ます。
実際、
[
レスポンス
の書式
設定
](
rest-response-formatting.md
)
で説明されているように、RESTful
実際、
[
レスポンス
形式の
設定
](
rest-response-formatting.md
)
で説明されているように、RESTful
ウェブサービスの開発においては、これがモデルをエクスポートする既定の方法となっています。
...
...
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