我正在尝试加快CakePHP的速度。我之前使用过MVC模式并熟悉这个想法。我试图按照2. *版本的CakePHP博客教程,但我没有运气。
如果我导航到http://localhost/posts/index
,我会看到:
未找到
在此服务器上找不到请求的网址/帖子。
如果我只是加载http://localhost/
我没有得到的另一件事是Controller如何调用:
$this->Post->find(’all’));
Post模型上没有名为find
的方法。该模型完全裸露:
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());
答案 0 :(得分:2)
我不知道该怎么做。框架是否生成了一个find方法,或者该教程的编写是否忽略了它的一个非常重要的部分?
是的,Framework负责ORM部分......我猜你是'超级'的新手......即使我是cakephp的新手......我只是CakePHP中的5个项目,所以即使我是新手。 ..
好的...
回到你的问题:
你需要有一个'发布'控制器和一个'索引'动作。
确保你'使用'Model else,你也可以通过这样的动作调用它:
$this->loadModel('Post');
$this->set($variable, $this->Post->find('all'));
然后在你的观点中
做一个:
<?php pr($variable) ?>
需要的不是'短期'鱼,而是捕鱼的能力......我上面给出的例子将让你了解CakePHP的工作原理。
有问题吗? :)
编辑:你有mod-rewrite的问题,这就是全部!
这样做:
打开app/Config/core.php
找到该行并取消注释:
Configure::write('App.baseUrl', env('SCRIPT_NAME'));
从所有文档根目录,app dif,webroot目录中删除所有,.htaccess ...
解决?
答案 1 :(得分:1)
第一个问题听起来像mod_rewrite有问题,请查看食谱中的URL rewriting章节。
框架是否生成了一个find方法,或者该教程的编写是否忽略了它的一个非常重要的部分?
不,不。这是明确的PHP functionality,您只需要遵循继承层次结构来查找find
方法的来源:Post
extends AppModel
extends Model
。如果您查看API,则会看到Model
定义find
模型继承的Post
方法。