2

你好我想问从url获取值参数到我的控制器

我像这样从javascript设置重定向url,

window.location.href = '<?php echo base_url().'index.php/form_tambahasset'?>' + '?lang=' + lg + '&lat=' +lt;

我需要把参数带到我的下一页langlat

http://localhost/BTS_CI/index.php/form_tambahasset

如果我将重定向网址设置为这样,

http://localhost/BTS_CI/index.php/form_tambahasset/lang/107.39410400390625/lat/-6.671700384923497

它必须是404页面未找到。

我怎样才能得到值参数langlat?我现在的位置,$config['uri_protocol']REQUEST_URI我试图改变PATH_INFO它对我不起作用。

我尝试$this->uri->segment(3, 0);parse_str($_GET['lat'], $_GET);但仍然无法获得我的参数。

我的页面

http://localhost/BTS_CI/index.php/form_tambahasset?lang=107.39410400390625&lat=-6.671700384923497

做得很好,但我需要得到我的参数值

我的问题有什么解决方案吗?请帮我。谢谢你

4

1 回答 1

2

只需要查看文档即可。

$this->input->get('lang', TRUE); // TRUE is for XSS filtering
$this->input->get('lat', TRUE); // TRUE is for XSS filtering

Codeigniter 输入类 - 使用 POST、GET、COOKIE 或 SERVER 数据

于 2015-12-15T21:42:54.217 回答