gpt4 book ai didi

CakePHP 找到 ('neighbors' )使用数组中的 [next] 和 [prev]

转载 作者:行者123 更新时间:2023-12-02 12:44:30 25 4
gpt4 key购买 nike

我正在尝试获取当前 Id 的邻居 Id。我下面的内容有效,但我无法将 [prev] 与 [next] 链接分开。 Controller 中的函数如下所示:

function prevNext() {
return $this->System->find('neighbors', array('fields' => 'name', 'value' => 3));
}

这将输出类似这样的内容:

Array
(
[prev] => Array
(
[System] => Array
(
[name] => Aegerter
[id] => 4004
)

)

[next] => Array
(
[System] => Array
(
[name] => Canonica
[id] => 4006
)

)

)

这作为 requestAction 传递 -

<?php $systems = $this->requestAction('systems/prevNext'); ?>
<?php foreach($systems as $system): ?>
<?php echo $html->link($system['System']['id'],array('action'=>'view', $system['System']['id']));?>, <?php echo $system['System']['name'];?>
<?php endforeach; ?>

作为元素进入 View :

<?php echo $this->element('systems'); ?>

如何分别调用 [prev] 和 [next] 链接(不是 foreach 输出)?蒂亚

最佳答案

如果我理解正确的话:

<?php echo $html->link($systems['prev']['System']['id'],array('action'=>'view', $systems['prev']['System']['id']));?>, <?php echo  $systems['next']['System']['name'];?>

<?php echo $html->link($systems['next']['System']['id'],array('action'=>'view', $systems['next']['System']['id']));?>, <?php echo $systems['next']['System']['name'];?>

关于CakePHP 找到 ('neighbors' )使用数组中的 [next] 和 [prev],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3593931/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com