0

我需要将参数从 URL 发送到 cakephp 控制器。我有带有两个参数“ufrom”和“uto”的消息表。在控制器中,我想将此值保存在消息表中。

我输入网址:

http://localhost/ar/messages/add?ufrom=9&uto=3

在 MessagesController 我有功能:

public function add() {

if(($this->request->query['uto'])and($this->request->query['ufrom'])){
        $this->Message->create();
        if ($this->Message->save($this->request->data)) {
            $this->set('addMessage',TRUE);
            $this->set('ufrom',$this->request->query['ufrom']);
            $this->set('uto',$this->request->query['uto']);
            $this->redirect(array('action' => 'index'));
        } else {
            $this->Session->setFlash(__('The message could not be saved. Please, try again.'));
        }

        $targets = $this->Message->Target->find('list');
        $this->set(compact('targets'));
}
else{
    $this->set('error',true);
}

}

在 add.ctp 我有:

<?php
if(isset($error)){
  echo('error');
}
else{
  echo json_encode($ufrom);
  echo json_encode($uto);
  echo json_encode($addMessage);
}
?>

但是当我使用上面的 URL 时,我看到:

Notice (8): Undefined variable: ufrom [APP\View\Messages\add.ctp, line 6]null
Notice (8): Undefined variable: uto [APP\View\Messages\add.ctp, line 7]null
Notice (8): Undefined variable: addMessage [APP\View\Messages\add.ctp, line 8]null

并且没有任何内容存储在数据库中。我是 cakephp 的新手。请帮忙。

4

2 回答 2

6

在这里,我可以建议您使用如下参数

http://www.example.com/tester/retrieve_test/good/1/accepted/active

但是如果你需要这样使用

http://www.example.com/tester/retrieve_test?status=200&id=1yOhjvRQBgY

你可以得到如下的值

echo $this->params['url']['id'];
echo $this->params['url']['status'];

在你的情况下会像

echo $this->params['url']['uto'];
echo $this->params['url']['ufrom'];
于 2013-08-17T12:14:14.570 回答
0

将参数传递给控制器​​动作的最简单方法是简单地将它们作为参数传递给动作,如下所示:

  public function add($ufrom,$uto)

您的网址应如下所示:

http://localhost/ar/messages/add/9/3

其次,如果数据来自 URL,您将不会使用 this->request->data ,只需:

$message = array("Message"=>array("ufrom"=>$ufrom,"uto"=>$uto));
$this->Message->save($message);
于 2013-08-21T14:50:46.693 回答