Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个属于角色的用户模型,因此角色字段$this->Auth->user('role')是相关角色表字段的关联数组。我假设这是一种相对常见的情况,并且我假设有更好的方法可以通过 Auth 组件访问'role'我的模型的字段,Role而无需分配$this->Auth->user('role')给不同的变量。
$this->Auth->user('role')
'role'
Role
我在这方面是正确的,还是我在夜间起床?
我问,因为我想在条件中使用它,而且我认为必须有一种方法不必先将它分配给另一个变量,我不明白。
好的,因为这在文档中并没有真正使用,显然这样做的方法是点子模型。
我在想可能有一些方法链接的方式来做到这一点,但它比这更简单一些。
$this->Auth->user('Role.role');
我不习惯在 php 中使用点符号,所以它让我有点失望。