如何获得yii2的单独链接,从低到高以及从高到低

问题描述 投票:0回答:1

我在yii2中按价格和日期排序

Sort by : <?=$sort->link('price');?> | <?=$sort->link('date');?>

它给出类似check this output的输出我可以通过单击价格标签对价格进行排序。低到高和高到低的相同链接。我想要两个都单独链接]

low to hight | high to low

如何执行

php sorting yii2
1个回答
0
投票

@@ abhi如果要在视图页面的网格上方按价格和日期添加过滤器,则需要准备如下URL参数:

从低到高的价格:

http://example.com/project/index?sort=price

从高到低的价格

http://example.com/project/index?sort=-price

需要对日期属性执行相同的过程。并确保日期和价格属性在ActiveRecord中可用。

© www.soinside.com 2019 - 2024. All rights reserved.