this article에 설명 된대로 CakePhp에서 정적 페이지를 관리하는 간단한 방법을 구현하려고합니다.App :: import()가 작동하지 않는 이유는 무엇입니까?
내가 직면 한 문제는 App::import()
가 routes.php 파일에서 필수 클래스를 가져 오지 않는 것입니다.
App::import('Model','StaticPage');
$page = new StaticPage();
$slugs = $page->find('list', array(
'fields' => array('StaticPage.slug'),
'order' => 'StaticPage.slug DESC'
));
내가지고있어 오류 : Fatal error: Class 'StaticPage' not found in ...
이 클래스는 모델 폴더 (모델/StaticPage.php)에 존재하는
코드는 다음과 같다.
난 그냥 몇 주 전에 CakePHP를 시작하고 난 여기에 간단한 일이 ...내가 CakePHP는 1.3과 PHP 5.2.42을 사용하고 누락 것 같아.
파일은 app/models/StaticPage.php에 있으며 링크 된 문서에서와 같이 구현됩니다 –