yii框架中的Url生产问题小结


Posted in PHP onJanuary 16, 2012
<?php echo CHtml::link('错误链接','user/register')?> 
<?php echo CHtml::link('正确链接',array('user/register'))?>

假定设定了UrlManager的配置为Path模式,用yii默认的配置:
'urlManager'=>array( 
'urlFormat'=>'path', 
'rules'=>array( 
'<controller:\w+>/<id:\d+>'=>'<controller>/view', 
'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>', 
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>', 
), 
),

上面两行代码会生产什么样的链接地址?
http://<site-addr>/user/register //错误链接
http://<site-addr>/index.php/user/register //正确链接
第一个链接是错误的,浏览器会返回404错误。第二个链接会访问UserController的Register方法。区别就在于第二个链接在生成的时候我们传入的参数是一个array数组,而第一个方法是一个简单字符串。Yii在处理Url的时候,遇到简单字符串会直接使用该字符串作为最终的Url,而当遇到数组的时候会调用Controller的CreateUrl来生成Url.
说到简单字符串,这两个链接中其实有一个非常本质的区别。虽然同样都是字符串'user/register',但是在第一个字符串中就代表一个13个字符的相对路径,而第二个链接中则代表UserController的registerAction,是有着特俗意义的。
附上Yii处理Url的方法NormalizeUrl的源代码:
/** 
* Normalizes the input parameter to be a valid URL. 
* 
* If the input parameter is an empty string, the currently requested URL will be returned. 
* 
* If the input parameter is a non-empty string, it is treated as a valid URL and will 
* be returned without any change. 
* 
* If the input parameter is an array, it is treated as a controller route and a list of 
* GET parameters, and the {@link CController::createUrl} method will be invoked to 
* create a URL. In this case, the first array element refers to the controller route, 
* and the rest key-value pairs refer to the additional GET parameters for the URL. 
* For example, <code>array('post/list', 'page'=>3)</code> may be used to generate the URL 
* <code>/index.php?r=post/list&page=3</code>. 
* 
* @param mixed $url the parameter to be used to generate a valid URL 
* @return string the normalized URL 
*/ 
public static function normalizeUrl($url) 
{ 
if(is_array($url)) 
{ 
if(isset($url[0])) 
{ 
if(($c=Yii::app()->getController())!==null) 
$url=$c->createUrl($url[0],array_splice($url,1)); 
else 
$url=Yii::app()->createUrl($url[0],array_splice($url,1)); 
} 
else 
$url=''; 
} 
return $url==='' ? Yii::app()->getRequest()->getUrl() : $url; 
}
PHP 相关文章推荐
PHP5中MVC结构学习
Oct 09 PHP
社区(php&amp;&amp;mysql)二
Oct 09 PHP
PHP 存取 MySQL 数据库的一个例子
Oct 09 PHP
PHP 高级课程笔记 面向对象
Jun 21 PHP
php获取通过http协议post提交过来xml数据及解析xml
Dec 16 PHP
php使用curl访问https示例分享
Jan 17 PHP
php断点续传之如何分割合并文件
Mar 22 PHP
PHP批量生成图片缩略图的方法
Jun 18 PHP
PHP 绘制网站登录首页图片验证码
Apr 12 PHP
PHP 7.1新特性的汇总介绍
Dec 16 PHP
php插件Xajax使用方法详解
Aug 31 PHP
php设计模式之备忘模式分析【星际争霸游戏案例】
Mar 24 PHP
fgetcvs在linux的问题
Jan 15 #PHP
PHP异步调用socket实现代码
Jan 12 #PHP
114啦源码(114la)不能生成地方房产和地方报刊问题4级页面0字节的解决方法
Jan 12 #PHP
PHP警告Cannot use a scalar value as an array的解决方法
Jan 11 #PHP
Trying to clone an uncloneable object of class Imagic的解决方法
Jan 11 #PHP
win2003服务器使用WPS的COM组件的一些问题解决方法
Jan 11 #PHP
php通过COM类调用组件的实现代码
Jan 11 #PHP
You might like
PHP多个版本的分析解释
2011/07/21 PHP
ThinkPHP在Cli模式下使用模板引擎的方法
2015/09/25 PHP
jQuery 添加/移除CSS类实现代码
2010/02/11 Javascript
判断用户是否在线的代码
2011/03/05 Javascript
caller和callee的区别介绍及演示结果
2013/03/10 Javascript
判定是否原生方法的JS代码
2013/11/12 Javascript
jQuery超简单选项卡完整实例
2015/09/26 Javascript
jQuery EasyUi实战教程之布局篇
2016/01/26 Javascript
Bootstrap开发实战之第一次接触Bootstrap
2016/06/02 Javascript
js中遍历Map对象的方法
2016/07/27 Javascript
jquery实现拖动效果(代码分享)
2017/01/25 Javascript
js 博客内容进度插件详解
2017/02/19 Javascript
微信小程序 空白页重定向解决办法
2017/06/27 Javascript
微信小程序点击控件修改样式实例详解
2017/07/07 Javascript
你可能不知道的JSON.stringify()详解
2017/08/17 Javascript
详解Vue一个案例引发「内容分发slot」的最全总结
2018/12/02 Javascript
Vue注册组件命名时不能用大写的原因浅析
2019/04/25 Javascript
jQuery实现雪花飘落效果
2020/08/02 jQuery
Element-ui el-tree新增和删除节点后如何刷新tree的实例
2020/08/31 Javascript
详解JavaScript中的数据类型,以及检测数据类型的方法
2020/09/17 Javascript
jQuery实现二级导航菜单的示例
2020/09/30 jQuery
在Django的通用视图中处理Context的方法
2015/07/21 Python
利用Pandas 创建空的DataFrame方法
2018/04/08 Python
使用anaconda的pip安装第三方python包的操作步骤
2018/06/11 Python
python django 原生sql 获取数据的例子
2019/08/14 Python
Python Collatz序列实现过程解析
2019/10/12 Python
Python图片处理模块PIL操作方法(pillow)
2020/04/07 Python
python 基于PYMYSQL使用MYSQL数据库
2020/12/24 Python
HTML5+lufylegend实现游戏中的卷轴
2016/02/29 HTML / CSS
印度在线购买电子产品网站:Croma
2020/01/02 全球购物
考试没考好检讨书
2014/01/31 职场文书
幼儿园大班毕业感言
2014/02/06 职场文书
党的群众路线对照检查材料思想汇报(学校)
2014/10/04 职场文书
六一文艺汇演开幕词
2015/01/29 职场文书
个人工作决心书
2015/09/22 职场文书
《酸的和甜的》教学反思
2016/02/18 职场文书