我遇到问题了2天了,我需要您的帮助。
我的phpmyadmin中有两个表=>侦听器/查看器 我的app / Model / Datasource => Listener.php / Viewer.php中有两个模型
Listener的loadModel()起作用:
$this->loadModel('Listener');
$test1 = $this->Listener->find('all');
但是查看器的loadModel()出错:/
$this->loadModel('Viewer');
$test2 = $this->Viewer->find('all');
我还是不明白为什么。
我的Viewer Model忘记了什么吗?
这是我的监听器模型
<?php
class Listener extends AppModel{
public $name = 'Listener';
//public $hasMany = 'AchieveConnectionModel';
public $validate = array(
'ip_addrress' => array(
'rule' => 'notEmpty'
),
'user_agent' => array(
'rule' => 'notEmpty'
),
'latitude' => array(
'rule' => 'notEmpty'
),
'longitute' => array(
'rule' => 'notEmpty'
),
'lastlogin' => array(
'rule' => 'notEmpty'
)
);
}
这是我的查看器模型:
<?php
class Viewer extends AppModel{
public $name = 'Viewer';
public $validate = array(
'vf' => array(
'rule' => 'notEmpty'
),
'total' => array(
'rule' => 'notEmpty'
),
'nonvf' => array(
'rule' => 'notEmpty'
),
'pourcentvf' => array(
'rule' => 'notEmpty'
)
);
}