cakephp $ this-> html->链接不改变位置

时间:2012-09-25 18:00:41

标签: cakephp hyperlink routes

我正在使用cakephp 2.2

我将路由器配置为具有漂亮的URL

html链接没有改变卡在第一个结果

以下代码可以正常运行,但我正在尝试使用蛋糕生成链接的方式

<td><a href="/<?php echo $examples['somemodel']['slug'];?>"><?php echo $examples['somemodel'][slug'];?> </a></td>

当我这样做时,网址名称不同 但超链接不会改变

<?php echo 
$this->Html->link($examples['model']['somename'], '/controllername/slug/' + $examples['model']['slug']);
?>

我的结果是

<a href =”/example1”>example1 </a> 
<a href =”/example1 ”>example2 </a> 
<a href =”/example1 ”>example3 </a> 
<a href =”/example1”>example4 </a> 

而不是我想要它做什么

<a href =”/example1”>example1 </a> 
<a href =”/example2”>example2 </a> 
<a href =”/example3”>example3 </a> 

您可以看到网址名称不同 但超链接不会改变

// router.php     路由器::连接(

"/example/:slug",
array('controller' => 'differentname', 'action' => 'view'),
       array( 

            'name'=>'[-A-Z0-9]+', 

           'pass' => array('slug')



          ) 

        );

Router::connectNamed(
array('/example/' => array('action' => 'view', 'controller' => 'different')),
array('default' => true, 'greedy' => true)
);      



//'view.ctp

  <?php
foreach ($example as $examples): ?>

 <?php echo 
 $this->Html->link($examples['model']['somename'], '/controllername/slug/' +     $examples['model']['slug']);
 ?>

结果      例1      例题      示例3      example4

而不是

   <a href =”/example1”>example1 </a> 
 <a href =”/example2”>example2 </a> 
<a href =”/example3”>example3 </a> 

我错过了什么或没有到达

1 个答案:

答案 0 :(得分:1)

也许是因为使用'+'作为文本附加运算符。你需要使用'。'代替。

示例:

$this->Html->link($examples['model']['somename'], '/controllername/slug/'.$examples['model']['slug']);