蛋糕PHP表单助手

时间:2010-12-19 08:56:39

标签: cakephp

我遇到了Form Helper的问题。我的控制器名称是posts_controller.php,它如下所示

<?php
    Class PostsController extends AppController
    {
        var $name='Posts';
        var $helpers=array('Html','Form','Link');
        var $components = array('Session');
        function index()
        {
            $this->pageTitle='Cake PHP Index page';            
            $this->paginate();
            $this->set('posts',$this->Post->find('all'));
        }

        function view($id=null)
        {
            $this->Post->id = $id;
            $this->set('post', $this->Post->read());
        }

        function add()
        {
            if(!empty ($this->data))
            {
                if($this->Post->save($this->data))
                {
                    $this->Session->setFlash('Your post has been saved.');
                    $this->redirect(array('action' => 'index'));
                }
            }
        }
    }
?>

当我转到添加操作时,视图add.ctp加载了相应的表单。

这是我的查看文件add.ctp

<?php
    echo $this->Form->create('Post');
    echo $this->input('title');
    echo $this->input('body');
    echo $this->Form->end('Save');
?>

当我提交表单时,我收到一条错误消息,指出您的控制器中未定义发布操作。当我在浏览器中检查页面的来源时,表单的操作具有错误值。我得到的值是

<form id="PostAddForm" method="post" action="/cakephp/app/webroot/index.php/posts/posts/add">

而不是

<form id="PostAddForm" method="post" action="/cakephp/app/webroot/index.php/posts/add">

你能帮助我吗?

4 个答案:

答案 0 :(得分:2)

尝试在服务器上启用mod_rewrite。对我来说这就是问题,特别是如果您的代码就是您发布的内容。

答案 1 :(得分:1)

像Nik说的那样,它看起来像是一个mod_rewrite问题。 HTML表单应该如下所示:

<form id="PostAddForm" method="post" action="/YourSite/posts/add">

mod_rewrite是一个Apache模块。通常默认情况下不启用它。有很多页面解释了如何做,但如果你在Ubuntu或Debian上,它可能有点神秘。如果是这种情况,请查看此处:http://bit.ly/ubuntu_mod_rewrite

答案 2 :(得分:0)

你也忘记了代码中的'

 echo $this->input('title);
 echo $this->input('title');

答案 3 :(得分:0)

我认为这应该是这样写的

$this->Form->create("Post",array('action'=>'add'));