yii框架中的Url生产问题小结
时间:2023-07-20 14:08:45
<?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;
}
标签:Url
0
投稿
猜你喜欢
python进阶之多线程对同一个全局变量的处理方法
2023-09-29 19:03:58
JavaScript数据结构中串的表示与应用实例
2023-08-26 10:38:38
查看django执行的sql语句及消耗时间的两种方法
2021-03-28 13:33:48
Python的Flask框架中的Jinja2模板引擎学习教程
2022-05-28 10:26:08
python实现自动化报表功能(Oracle/plsql/Excel/多线程)
2021-04-02 02:05:02
python实现linux下抓包并存库功能
2022-12-23 20:22:06
Tensorflow深度学习使用CNN分类英文文本
2021-01-02 08:07:56
js弹出新窗口而不会被浏览器阻止的方法
2010-04-06 12:38:00
详解DeBug Python神级工具PySnooper
2022-12-14 15:44:31
Python中 传递值 和 传递引用 的区别解析
2023-12-26 07:05:22
pandas read_excel()和to_excel()函数解析
2022-11-26 06:25:19
OpenCV学习方框滤波实现图像处理代码示例
2023-02-08 17:17:43
详细解析Webpack是怎么运行的
2022-09-07 04:00:50
SQL Server如何插入数据示例代码
2024-01-13 16:42:33
Python中使用subprocess库创建附加进程
2022-01-01 06:30:25
Python约瑟夫生者死者小游戏实例讲解
2023-02-12 02:14:25
无法在发生错误时创建会话,请检查 PHP 或网站服务器日志,并正确配置 PHP 安装最快的解决办法
2023-09-03 19:49:50
pandas如何统计某一列或某一行的缺失值数目
2023-02-10 21:36:00
oracle 性能优化建议小结
2010-04-22 16:32:00
Python实现读取txt文件并转换为excel的方法示例
2023-07-25 15:20:16