Zend Framework:/ 和 # Rest API 调用之间有什么区别?

发布于 2024-11-10 09:14:52 字数 271 浏览 1 评论 0原文

我有一个在 zend 框架下运行的网站。 以下调用在控制器操作方面有何区别: http://localhost/home/passwordhttp://localhost/home#password?两种方法都有效,但结果略有不同:一种输出包含一些 UI 元素,而另一种则不包含。

I have a site which runs under zend framework.
Whats the difference between the following calls in terms of controller actions: http://localhost/home/password and http://localhost/home#password? Both works, but the results are slightly different: one output includes some UI elements while another one doesnt.

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

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

发布评论

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

评论(1

深陷 2024-11-17 09:14:52

您错了。它们不一样。

http://localhost/home/password home 中是控制器和 password 是行动。

http://localhost/home#password home 中是控制器和 index 是操作,#password 是页面书签,根本无法通过 php(zend 框架)访问。

You are wrong. they are not the same.

In http://localhost/home/password home is controller and password is action.

In http://localhost/home#password home is controller and index is action and #password is page bookmark which is not accessible through php (zend framework) at all.

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