CakePHP ACL 列表,ARO 别名
我有一个关于在 Cakephp 中创建 Aro-s 的小问题
http://book.cakephp.org/#!/view/1547/Acts-As-a-Requester
我正在使用 cake-s 教程中提供的代码(请参阅链接),问题是别名因为 aro-s 没有设置。如何才能实现这一目标?
I've got a small question about Creating Aro-s in Cakephp
http://book.cakephp.org/#!/view/1547/Acts-As-a-Requester
I'm using code provided in cake-s tutorial (see the link), the problem is that alias for the aro-s are not set. how can this be achieved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了快速完成本教程,您可以使用您最喜欢的数据库管理程序(phpMyAdmin 等)简单地设置别名。
编辑1:
转到
afterSave
回调关注的模型并从那里设置别名。For the purpose of going through the tutorial quickly, you can simply set the alias using your favorite database managing program (phpMyAdmin or the like).
Edit1:
Go for the
afterSave
callback in the model under concern and set the alias from there.在您的用户模型中添加类似的内容。
将 'name' 更改为您要用作 Aro 别名的 fieldName。团体模型中也是如此。
致敬。
Add something like this in your User Model.
Change 'name' by the fieldName you want to use as alias for the Aro. Same in the Group Model.
Saludos.