来自 uri 的 Codeigniter

发布于 2024-09-24 01:42:56 字数 156 浏览 4 评论 0原文

好的,我有这个问题: 我正在创建一个搜索功能,为了正确执行此操作,我必须将搜索字段中写入的单词传递给 uri,例如。第三段。但由于 Codeigniter 只支持 post 而不支持 get 方法(它可以启用,但我正在寻找解决办法),我需要通过 post 将该变量传递到 uri。有人可以帮助我吗?

OK i have this problem:
I'm creating a search function and to do that correctly i have to pass the word that is written in search field to uri eg. third segment. But since Codeigniter only supports post and not get method (it can be enabled but I'm looking for way around) I need to pass that variable via post to uri. Can anybody help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薄暮涼年 2024-10-01 01:42:56

POST 到控制器,然后重定向到 URL 中包含该单词的页面。

search.php

$this->input->post('q') AND redirect('search/query/'.$this->input->post('q');

多田。

POST to a controller then redirect to the page with the word in the URL.

search.php

$this->input->post('q') AND redirect('search/query/'.$this->input->post('q');

Tada.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文