cakephp 视图插件

发布于 2024-11-09 08:50:56 字数 338 浏览 0 评论 0原文

我对 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 技术交流群。

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

发布评论

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

评论(1

樱桃奶球 2024-11-16 08:50:56

“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").

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