Zend Framework:/ 和 # Rest API 调用之间有什么区别?
我有一个在 zend 框架下运行的网站。 以下调用在控制器操作方面有何区别: http://localhost/home/password 和 http://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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您错了。它们不一样。
在 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 andpassword
is action.In http://localhost/home#password
home
is controller andindex
is action and#password
is page bookmark which is not accessible through php (zend framework) at all.