У меня проблема в течение 2 дней, и мне нужна ваша помощь.
У меня есть две таблицы в моем phpmyadmin => слушатели / зрители У меня есть две модели в моем приложении / Model / Datasource =>Listener.php / Viewer.php
LoadModel () Listener работает:
$this->loadModel('Listener');
$test1 = $this->Listener->find('all');
Но loadModel () Viewer выдает ошибку: /
$this->loadModel('Viewer');
$test2 = $this->Viewer->find('all');
Я до сих пор не понимаю, почему.
Я что-то забыл с моей моделью просмотра?
Это моя модель слушателя
<?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'
)
);
}