Zend框架动作参数

发布于 2024-11-13 08:42:30 字数 264 浏览 3 评论 0原文

我想将整个路径作为操作参数传递给我的控制器操作。

mycontroller/myaction/myparameter/path_value

例如path_value 可能类似于 test/folder/folder2

我不想对参数进行 urlencode。在我的控制器操作中,我是否可以获取整个路径作为“myparameter”的参数值(因此,“test/folder/folder2”),而不仅仅是“test”。

我希望我说得足够清楚。提前Tnx

I want to pass an entire path as an action parameter to my controller action.

mycontroller/myaction/myparameter/path_value

e.g. path_value could be something like test/folder/folder2

I do not want to urlencode the parameter. Is it possible that in my controller action I can get the entire path as the parameter value for 'myparameter' (so, 'test/folder/folder2') instead of only 'test'.

I hope I am clear enough. Tnx in advance

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

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

发布评论

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

评论(2

人海汹涌 2024-11-20 08:42:30

您可以将其传递为 ?myparameter=test/folder/folder2

You can pass it as <baseurl>?myparameter=test/folder/folder2

想你的星星会说话 2024-11-20 08:42:30

您必须修改 Zend 的路由才能执行您尝试的操作。对路径进行编码对您来说可能要简单得多。我想您可以将此变量作为 POST 而不是 GET 发送。

You will have to modify Zend's routing in order to do what you are attempting. Encoding the path may be much simpler for you. I suppose you could send this variable as a POST rather than a GET.

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