0

我第一次在 cakephp 中为我正在开发的项目工作。在一个视图中,我有一个数组,我希望能够在其中使用控制器函数。

我有信息的数组是这个

 $linkedinInfo

然后在视图中,我使用表单将数组从视图发送到控制器

       $this->Form->create('LinkedinData', array('controller'=>'Users','type' => 'post', 'action' => 'add'));
       $this->Form->input('User', $linkedinInfo);
       $this->Form->end('submit');

添加是添加是用户控制器中不是我开发的功能。功能是

       public function add() {
        if ($this->request->is('post')) {
          $this->User->create();
          if ($this->User->save($this->request->data)) {
            $this->Session->setFlash(__('The user has been saved'));
            $this->redirect(array('action' => 'index'));
           } else {
          $this->Session->setFlash(__('The user could not be saved. Please, try   again.'));
         }}

我收到错误“数组到字符串的转换”,我对在 CakePHP 中工作不是很熟悉,但我不明白为什么我会得到这个,因为 Cookboek 使用像我这样的一切 http://book.cakephp.org/ 2.0/en/core-libraries/helpers/form.html


编辑:LinkedinInfo 是我通过 Linkedin API 获得的一个数组,然后我对其进行了编辑。这里是推荐部分的结构示例

[linkedin_recomendations] => Array
    (
        [0] => Array
            (
                [name] => test1
                [relationship] => education
                [text] => Hello world
            )

        [1] => Array
            (
                [name] => test2
                [relationship] => colleague
                [text] => Derp
            )

    )

我想要做的是将此信息发送到 UsersController,它将在 Mongodb 数据库中创建一个用户

4

1 回答 1

0

您尝试提交的数据格式不正确,无法保存。

请检查本书以确保您正确格式化数据。

http://book.cakephp.org/2.0/en/models/saving-your-data.html

于 2013-05-02T08:00:40.017 回答