已经复制粘贴了 cakephp 2.2 中博客教程中的代码,但它不起作用。得到以下错误。注意事项(8):未定义常量Html的使用注意事项(8):未定义常量Form的使用注意事项(8):未定义常量帖子的使用注意事项(8):未定义常量的使用全部注意事项(8):未定义索引:全部如下是 PostsController 和 index.ctp 的代码。
<?php
class PostsController extends AppController {
public $helpers = array(’Html’, ’Form’);
public function index() {
$this->set(’posts’, $this->Post->find(’all’));
}
public function view($id = null) {
$this->Post->id = $id;
$this->set(’post’, $this->Post->read());
}
}
?>
index.ctp
<h1>Blog posts</h1>
<table>
<tr>
<th>Id</th>
<th>Title</th>
<th>Created</th>
</tr>
<?php foreach ($posts as $post): ?>
<tr>
<td><?php echo $post[’Post’][’id’]; ?></td>
<td>
<?php echo $post[’Post’][’title’]; ?>
</td>
<td><?php echo $post[’Post’][’created’]; ?></td>
</tr>
<?php endforeach; ?>
<?php unset($post); ?>
</table>