cakephp函数调用
调用cakephp函数有什么用 http://localhost/project/controller/method.hello
那你好呢? 但它需要views/method/hello/method.ctp...
whats the use of calling a cakephp function
http://localhost/project/controller/method.hello
so whats hello?
but it requires views/method/hello/method.ctp...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的描述中似乎存在一些错误。典型的 CAKEPHP url 应该类似于:
webroot/controller/method/argument
并且方法必须有一个视图文件。请参阅 cakephp 的典型请求
It seems there are some errors in your description.A typical CAKEPHP url should something like:
webroot/controller/method/argument
and a method must have a view file.See typical request of cakephp
正如 SpawnCxy 所注意到的,也许您没有很好地理解请求的“哲学”。
无论如何,使用您可以定义自己的路由,但默认情况下请
记住您也可以使用 命名参数
As SpawnCxy noticed, maybe you did not understand well the request "philosophy".
Anyway, using routes you can define your own, but the default is
remember that you can also use Named Parameters