dongshao4207 2019-04-27 05:02
浏览 47
已采纳

如何使用codeigniter在url中传递变量?

I am passing multiple variables like window.location.href="<?php echo base_url(); ?>search?result="+state1+"&c="+city1; instead of window.location.href="<?php echo base_url(); ?>search/"+state1+"/"+city1;

Now, the problem is when I define route i.e. $route['search?(:any)'] = "test/search?$1"; after a click on submit button then it shows an error on search page and print nothing. So, How can I resolve this issue? Please help me.

view:

<script>
    $(".submit").click(function(){
        state1 = $("#state1").val();
        city1 = $(".city1").val();
        window.location.href="<?php echo base_url(); ?>search?result="+state1+"&c="+city1;
    });
</script>

controller:

public function search($raw)
{
    echo $raw;
}

config/route.php

$route['search?(:any)'] = "test/search?$1";

Thank You

  • 写回答

4条回答 默认 最新

  • doucou19961205 2019-04-27 05:25
    关注

    Your routing is wrong. No need to route the url for access the $_GET values.

    Try below code.

    Change $route['search?(:any)'] = "test/search?$1"; to $route['search'] = "test/search";

    To get it values:

    $this->input->get('result');

    $this->input->get('c');

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改