0

我是练习 CakePHP 的新手,我想从网络用户那里获取价值,我的控制器将从数据库中搜索该值。我只是想知道如何将我的 $_post 值添加到以下代码中?

class DataviewsController extends AppController {

public  $components = array('RequestHandler');

public function customer($id = null) {

    $this->loadModel('Customer','Stock');
    if (!$this->Customer->exists($id)) {
        throw new NotFoundException(__('Invalid customer'));
    }
    $options = array('conditions' => array('Customer.' . $this->Customer->primaryKey => $id));
    // Send the customer to the view
    $this->set('customer', $this->Customer->find('first', $options));
    $this->set('_serialize',array('customer'));

}
4

2 回答 2

0

您可以在 中访问帖子数据并在 中$this->request->data获取数据$this->request->query。至于您的第二个问题,我不确定您在提到您发布的代码时要问什么。

于 2013-07-20T03:35:24.353 回答
0

是的,您可以使用 cakephp 请求处理程序对象

这是创建表单并从特定表中获取用户数据输入和搜索的非常好的示例。从中您可以很好地了解如何在您的应用程序中实现

只要扔掉这个链接或者这个链接到 cakephp 2.0,如果你需要更多帮助,请告诉我

于 2013-07-20T03:36:19.170 回答