yii的方法createUrl生成路径问题
发现用 $this->createUrl('index/archives') 后成的路径是相对的这种 。 不是 www.xxxx.com/ 绝对的这种。请问一下有什么方法让 createUrl生成绝对的吗?我在网上找了好久都没有找到方法
------解决方案--------------------
使用createAbsoluteUrl()就可以了。
$route = 'index/archives';
$params=array();
$url=$this->createAbsoluteUrl($route,$params);
http://www.yiiframework.com/doc/api/1.1/CController#createAbsoluteUrl-detail