get方式提交表单遇到的url问题

浏览:1595 发布日期:2015/08/05 分类:求助交流 关键字: url get 路径模式
我用的是默认的URL路径配置,因此模板里这样写的<form class="form-inline pull-left" role="form" action="{:U('index')}" method="get">前端表单渲染后的action地址如下<form class="form-inline pull-left" role="form" action="/index.php?m=Admin&c=User&a=index" method="get">我提交表单之后的URL如下http://localhost/index.php?type=nickname&key=xiaoli其实我理想的地址应该如下http://localhost/index.php?m=Admin&c=User&a=index&type=nickname&key=xiaoli我尝试过如下方法:
1,我把提交方式改为post 问题得到解决!
2,我修改了URL模式为伪静态 问题解决!

OK, 我想知道 用get方式, 请问有啥解决方案不?


最佳答案
评论( 相关
后面还有条评论,点击查看>>