- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在关注 http://book.cakephp.org/2.0/en/tutorials-and-examples/simple-acl-controlled-application/simple-acl-controlled-application.html教程,我在您添加组和用户帐户的部分...
但是,当我访问添加新用户时,该组的下拉列表是空的...可能有什么问题?
这是 User.php 模型的样子
<?php
App::uses('AppModel', 'Model');
/**
* User Model
*
* @property Group $Group
* @property Image $Image
*/
App::uses('AuthComponent', 'Controller/Component');
class User extends AppModel {
/**
* Display field
*
* @var string
*/
//The Associations below have been created with all possible keys, those that are not needed can be removed
public $actsAs = array('Acl' => array('type' => 'requester'));
public function beforeSave() {
$this->data['User']['password'] = AuthComponent::password($this->data['User']['password']);
return true;
}
public function bindNode($user) {
return array('model' => 'Group', 'foreign_key' => $user['User']['group_id']);
}
public function parentNode() {
if (!$this->id && empty($this->data)) {
return null;
}
if (isset($this->data['User']['group_id'])) {
$groupId = $this->data['User']['group_id'];
} else {
$groupId = $this->field('group_id');
}
if (!$groupId) {
return null;
} else {
return array('Group' => array('id' => $groupId));
}
}
public $belongsTo = array(
'Group' => array(
'className' => 'Group',
'foreignKey' => 'group_id',
'conditions' => '',
'fields' => '',
'order' => ''
)
);
public $hasMany = array(
'Image' => array(
'className' => 'Image',
'foreignKey' => 'user_id',
'dependent' => false,
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'exclusive' => '',
'finderQuery' => '',
'counterQuery' => ''
)
);
}
这是 Group.php 模型的样子
<?php
App::uses('AppModel', 'Model');
/**
* Group Model
*
* @property User $User
*/
class Group extends AppModel {
/**
* Display field
*
* @var string
*/
public $displayField = 'name';
/**
* Validation rules
*
* @var array
*/
//The Associations below have been created with all possible keys, those that are not needed can be removed
/**
* hasMany associations
*
* @var array
*/
public $actsAs = array('Acl' => array('type' => 'requester'));
public function parentNode() {
return null;
}
public $hasMany = array(
'User' => array(
'className' => 'User',
'foreignKey' => 'group_id',
'dependent' => false,
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'exclusive' => '',
'finderQuery' => '',
'counterQuery' => ''
)
);
}
我的表格是这样的'用户'表
> > Field Type Null Key Default Extra
> > id int(11) NO PRI NULL auto_increment
> > username varchar(64) NO UNI NULL password varchar(82) NO NULL
> > first_name varchar(64) NO NULL last_name varchar(64) NO NULL
> > created datetime YES NULL group_id int(11) NO NULL
'组'表
Field Type Null Key Default Extra
id int(11) NO PRI NULL auto_increment
name varchar(100) NO NULL
created datetime YES NULL
modified datetime YES NULL
查看/Users/add.ctp代码
<div class="users form">
<?php echo $this->Form->create('User');?>
<fieldset>
<legend><?php echo __('Add User'); ?></legend>
<?php
echo $this->Form->input('username');
echo $this->Form->input('password');
echo $this->Form->input('first_name');
echo $this->Form->input('last_name');
echo $this->Form->input('group_id');
?>
</fieldset>
<?php echo $this->Form->end(__('Submit'));?>
</div>
<div class="actions">
<h3><?php echo __('Actions'); ?></h3>
<ul>
<li><?php echo $this->Html->link(__('List Users'), array('action' => 'index'));?></li>
<li><?php echo $this->Html->link(__('List Groups'), array('controller' => 'groups', 'action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Group'), array('controller' => 'groups', 'action' => 'add')); ?> </li>
<li><?php echo $this->Html->link(__('List Images'), array('controller' => 'images', 'action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Image'), array('controller' => 'images', 'action' => 'add')); ?> </li>
</ul>
</div>
我创建了 2 个组。一种是“访客”,一种是“管理员”..这是 aros
表现在的样子
id parent_id model foreign_key alias lft rght
2 NULL Group 4 1 2
3 NULL Group 5 3 4
最佳答案
你有没有先加群?首先,您必须添加组,然后尝试添加用户。
请确认您在用户模型 User.php
中设置了 belongsTo 关系
public $belongsTo = array(
'Group' => array(
'className' => 'Group',
'foreignKey' => 'group_id',
'conditions' => '',
'fields' => '',
'order' => ''
)
);
检查您的 UserController Add 方法是否有以下代码
请验证 $groups = $this->User->Group->find('list');
部分
$this->set(compact('groups'));
public function add() {
if ($this->request->is('post')) {
$this->User->create();
if ($this->User->save($this->request->data)) {
$this->Session->setFlash(__('The user has been saved'));
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(__('The user could not be saved. Please, try again.'));
}
}
$groups = $this->User->Group->find('list');
$this->set(compact('groups'));
}
关于php - CakePHP ACL 教程 group_id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10377739/
基本上,有一个从数据库中删除重复项的抽象任务,它通过它的 id 与其他几个表链接......我需要为表中的每个重复行分配一个唯一的 group_id 作为现有行的 max(id) 。请帮忙 图中我的问
假设我们有这样的表 id | group_id | TEXT | -------------------------------------- 1 |
我有一个 PHP 循环遍历我的媒体表,在表中它们是这些字段:id(唯一的id_,post_id(每个帖子的随机id),user_id,file_format,group_id 如果上传一组多张图片,它
我有一个产品目录,每个产品有 2 个数量(products_quantity 和 products_incoming_quantity),一些产品在 group_id 下分组在一起。 我试图为属于同一
我正在尝试从一个表中计算平均值并将其放入一个新表中,该表在 MySQL 中按组名分组。 在第一个表(称为答案)中,我有来自许多组的调查答案。答案是数值(INT,1-7),问题分为问题组(文化、表现、等
我有一个名为 LOGS 的 Oracle 18c 表: create table logs (id number, log_tags varchar2(4000)); insert into logs
当我在 linux 中使用 useradd 命令时,帐户的 user_id 和 group_id 被自动选择为 500。现在如果我删除帐户并再次创建它,然后 user_id 和 group_id 也是
我正在关注 http://book.cakephp.org/2.0/en/tutorials-and-examples/simple-acl-controlled-application/simple
我有以下架构和示例数据(示例): with t as ( select 1::int id , 10.01::numeric price_from , 100::int buyers ,100
我想按 group_id 排序以随机顺序选择行: id group_id 1 1 2 1 3 2 4 2 5 3 6 4 我希望它们像下面这样排序或随机但仍分组: id g
我尝试使用 gradle-mvn-push helper将 Artifact 发布到本地 Nexus 存储库。 我开始在 gradle.properties 文件中配置所有值。 如果我运行 ./gra
设置: CREATE TABLE tbl (group_id integer, id integer) INSERT INTO tbl VALUES (1, 1) INSERT INTO tbl VA
Sqlfiddle 是 http://sqlfiddle.com/#!2/7df50/4 基本上,我有 3 个表:组、成员资格、客户。 tbl.client = client_id (PK, AI),
我有这样的数据: +----------+-----------+------------+------+ | group_id | person_id | is_primary | year | +
我正在使用 Kafka (kafka-python) 版本 3.0.0-1.3.0.0.p0.40。我需要为 Python 中的“模拟”主题配置消费者。当我不指明 group_id,即 group_i
我有 Joomla! 的责任! 3.5.1 网站。新用户通过脚本添加,“运算符(operator)”可以在其中添加成员。但是,最近我遇到了一个问题,其中消息“SQL=INSERT INTO #__us
尝试创建属于组和用户的帖子时运行以下代码时出现此错误: from django.shortcuts import render, get_object_or_404 from groups.model
安装最新版本的 MySQL 后,将数据插入数据库时出现以下错误。我的应用程序运行的是旧版本的 mysql,但在更新新版本后所有应用程序都崩溃了。 像这样的 mysql 查询: INSERT INT
我是一名优秀的程序员,十分优秀!