cakephp 视图插件
我对 cakephp 很陌生,
当我访问网站时,我在应用程序中看到一个文件夹插件,我看到地址为
mysite.com/user/mergerdata
mergedata 是一个插件
当我单击添加时,我看到这个
mysite.com/account /mergerdata/add
因此,当我转到 app/plugins/mergerdata/controllers/merger_controller 时
,我没有看到添加操作,但我确实看到了 user_add 操作,
我是不是看错地方了。用户来自哪里。 Add 是从哪里来的???
I am very new to cakephp and I see a folder plugin in my application
when I go to the site I see the address as
mysite.com/user/mergerdata
mergerdata is a plugin
When I click on add I see this
mysite.com/account/mergerdata/add
so when I go to app/plugins/mergerdata/controllers/merger_controller
I dont see an add action, But I do see the user_add action there
Am I looking at the wrong place. Where is User comning from. Where is Add coming from ???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“user”是一个前缀,类似于管理员前缀。您可以在 http://book.cakephp.org/view/950/ 上阅读更多相关信息前缀路由
基本上,这个功能可以让你对不同级别的用户有不同的方法,并且在方法名称(“add”)前面添加前缀(“user”)。
"user" is a prefix, similar to an admin prefix. You can read more about it on http://book.cakephp.org/view/950/Prefix-Routing
Basically, this feature allows you to have different methods for different levels of users, and the prefix ("user") is added to the front of the method name ("add").