我是Laravel,PHP和Web开发的新手。我有两个标签教师
<a href='/teachers'>Teachers</a>
和课程<a href='/courses'>Courses</a>
以及两个下拉列表,即标题导航中的类别,城市。教师和课程标签会将我带到各自的网页localhost/teachers
和localhost/courses
。类别和城市通过从下拉列表中选择比利时和O-Levels,按如下方式添加查询字符串。
localhost/teachers?city=belgium&category=Olevels
当我从一个链接点击到另一个链接时,我想要相同的查询字符串。
答案 0 :(得分:1)
最简单的方法是使用Request
外观将查询字符串附加到链接网址:
<a href='/teachers?{{ Request::getQueryString() }}'>
Teachers
<a/>
和
<a href='/courses?{{ Request::getQueryString() }}'>
Courses
<a/>