我正在努力加快 CakePHP 的速度。我以前用过MVC模式,对这个想法很熟悉。我试图按照 CakePHP 的 2.* 版本的博客教程进行操作,但没有运气。
如果我导航到http://localhost/posts/index
,我会看到:
未找到
在此服务器上找不到请求的 URL /Posts。
如果我只是加载,一切看起来都很好http://localhost/
我不明白的另一件事是控制器如何调用:
$this->Post->find(’all’));
find
Post 模型上没有调用任何方法。该模型完全裸露:
class Post extends AppModel {
}
我不知道该怎么做。框架是否生成了一个查找方法,或者教程的编写省略了其中一个非常重要的部分?
编辑 - 更多细节 在文件夹 app/Controller 中有一个控制器,名为 PostsController:
class PostsController extends AppController {
public $helpers = array(’Html’, ’Form’);
public function index() {
$this->set(’posts’, $this->Post->find(’all’));
}
public function view($id = null) {
if (!$id) {
throw new NotFoundException(__(’Invalid post’));
}
$post = $this->Post->findById($id);
if (!$post) {
throw new NotFoundException(__(’Invalid post’));
}
$this->set(’post’, $post);
}
}
/app/View/Posts/里面有一个索引视图
<!-- File: /app/View/Posts/index.ctp -->
<h1>Blog posts</h1>
<table>
<tr>
<th>Id</th>
<th>Title</th>
<th>Created</th>
</tr>
<!-- Here is where we loop through our $posts array, printing out post info -->
<?php foreach ($posts as $post): ?>
<tr>
<td><?php echo $post[’Post’][’id’]; ?></td>
<td>
<?php echo $this->Html->link($post[’Post’][’title’],
array(’controller’ => ’posts’, ’action’ => ’view’, $post[’Post’][’id’])); ?>
</td>
<td><?php echo $post[’Post’][’created’]; ?></td>
</tr>
<?php endforeach; ?>
<?php unset($post); ?>
</table>
该模型如上面的原始帖子中所述。
在数据库中,我在教程中使用了以下数据:
/* First, create our posts table: */
CREATE TABLE posts (
id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
title VARCHAR(50),
body TEXT,
created DATETIME DEFAULT NULL,
modified DATETIME DEFAULT NULL
);
/* Then insert some posts for testing: */
INSERT INTO posts (title,body,created)
VALUES (’The title’, ’This is the post body.’, NOW());
INSERT INTO posts (title,body,created)
VALUES (’A title once again’, ’And the post body follows.’, NOW());
INSERT INTO posts (title,body,created)
VALUES (’Title strikes back’, ’This is really exciting! Not.’, NOW());