From 667387eaf98050cb21299b0dbe3ba2ce1ac454fa Mon Sep 17 00:00:00 2001 From: fangliang Date: Tue, 4 Aug 2015 18:27:16 +0800 Subject: [PATCH] finished helper-url --- docs/guide-zh-CN/helper-url.md | 41 ++++------------------------------------- 1 file changed, 4 insertions(+), 37 deletions(-) diff --git a/docs/guide-zh-CN/helper-url.md b/docs/guide-zh-CN/helper-url.md index 2834d3c..efb8f50 100644 --- a/docs/guide-zh-CN/helper-url.md +++ b/docs/guide-zh-CN/helper-url.md @@ -3,7 +3,7 @@ Url 帮助类 Url 帮助类提供一系列的静态方法来帮助管理 URL。 -## 获得通用 URL +## 获得通用 URL 有两种获取通用 URLS 的方法 :当前请求的 home URL 和 base URL 。为了获取 home URL ,使用如下代码: @@ -13,9 +13,6 @@ $absoluteHomeUrl = Url::home(true); $httpsAbsoluteHomeUrl = Url::home('https'); ``` -If no parameter is passed, the generated URL is relative. You can either pass `true` to get an absolute URL for the current -schema or specify a schema explicitly (`https`, `http`). - 如果没有传任何参数,这个方法将会生成相对 URL 。你可以传 `true` 来获得一个针对当前协议的绝对 URL ;或者,你可以明确的指定具体的协议类型( `https` , `http` ) 如下代码可以获得当前请求的 base URL: @@ -80,18 +77,6 @@ echo Url::toRoute('site/index', 'https'); 还有另外一个方法 `Url::to()` 和 [[toRoute()]] 非常类似。这两个方法的唯一区别在于,前者要求一个路由必须用数组来指定。如果传的参数为字符串,它将会被直接当做 URL 。 -[aaa](#getting-common-urls) - -The first argument could be: - -- an array: [[toRoute()]] will be called to generate the URL. For example: - `['site/index']`, `['post/index', 'page' => 2]`. Please refer to [[toRoute()]] for more details - on how to specify a route. -- a string with a leading `@`: it is treated as an alias, and the corresponding aliased string - will be returned. -- an empty string: the currently requested URL will be returned; -- a normal string: it will be returned as is. - `Url::to()` 的第一个参数可以是: - 数组:将会调用 [[toRoute()]] 来生成URL。比如: `['site/index']`, `['post/index', 'page' => 2]` 。详细用法请参考 [[toRoute()]] 。 @@ -99,13 +84,7 @@ The first argument could be: - 空的字符串:当前请求的 URL 将会被返回; - 普通的字符串:返回本身。 -When `$scheme` is specified (either a string or true), an absolute URL with host info (obtained from -[[\yii\web\UrlManager::hostInfo]]) will be returned. If `$url` is already an absolute URL, its scheme -will be replaced with the specified one. - -Below are some usage examples: - -当 `$scheme` 指定了(无论是字符串还是 true ),一个带主机信息(通过 [[\yii\web\UrlManager::hostInfo]] 获得)的绝对 URL 将会被返回。如果 `$url` 已经是绝对 URL 了,它的协议信息将会被替换为指定的。 +当 `$scheme` 指定了(无论是字符串还是 true ),一个带主机信息(通过 [[\yii\web\UrlManager::hostInfo]] 获得)的绝对 URL 将会被返回。如果 `$url` 已经是绝对 URL 了,它的协议信息将会被替换为指定的( https 或者 http )。 以下是一些使用示例: @@ -135,10 +114,6 @@ echo Url::to('@web/images/logo.gif', true); echo Url::to('@web/images/logo.gif', 'https'); ``` -Starting from version 2.0.3, you may use [[yii\helpers\Url::current()]] to create a URL based on the currently -requested route and GET parameters. You may modify or remove some of the GET parameters or add new ones by -passing a `$params` parameter to the method. For example, - 从2.0.3版本开始,你可以使用 [[yii\helpers\Url::current()]] 来创建一个基于当前请求路由和 GET 参数的 URL。你可以通过传递一个 `$params` 给这个方法来添加或者删除 GET 参数。例如: ```php @@ -156,11 +131,7 @@ echo Url::current(['id' => 100]); ## 记住 URLs -There are cases when you need to remember URL and afterwards use it during processing of the one of sequential requests. -It can be achieved in the following way: - -有时,你需要记住一个 URL 并在后续的请求处理中使用它。你可以用以下方式达成这个目的: - +有时,你需要记住一个 URL 并在后续的请求处理中使用它。你可以用以下方式达到这个目的: ```php // Remember current URL @@ -173,9 +144,7 @@ Url::remember(['product/view', 'id' => 42]); Url::remember(['product/view', 'id' => 42], 'product'); ``` -In the next request we can get URL remembered in the following way: - -在后续的请求,我们可以按照如下方式获得记住的 URL: +在后续的请求处理中,我们可以按照如下方式获得记住的 URL: ```php $url = Url::previous(); @@ -184,8 +153,6 @@ $productUrl = Url::previous('product'); ## 检查相对 URLs -To find out if URL is relative i.e. it doesn't have host info part, you can use the following code: - 你可以用如下代码检测一个 URL 是否是相对的(比如,包含主机信息部分)。 ```php