$ this-> post codeigniter不能与rest api一起使用

时间:2013-07-05 13:33:48

标签: php codeigniter rest post

我尝试使用$this->post()以json格式发送邮件发送的数据。我无法得到任何结果,例如$this->post('name')

这是代码:

<?php

require(APPPATH . '/libraries/REST_Controller.php');

class user_api extends REST_Controller {

    function user_post() {

                $user = array(
                    'id' => null,
                    'firstname' => $this->post('firstname'),
                    'lastname' => $this->post('lastname')
                );

                $result = $this->user_model->insert($user);
                if ($result) {
                    $this->response($result, 200); // 200 being the HTTP response code
                } else {
                    $this->response(NULL, 404);
                }
    }

}

?>

以json格式发送到链接的数据:http://mydomain.com/myapplication/user_api/user

{"firstname":"test",
"lastname":"test"
}

数据库中没有数据,因为它无法从$this->post('firstname')获取数据。

任何想法????

10 个答案:

答案 0 :(得分:7)

json数据你不能通过post方法获得你必须像这样使用

require(APPPATH . '/libraries/REST_Controller.php');

class user_api extends REST_Controller {

    function user_post() {

       $params = json_decode(file_get_contents('php://input'), TRUE);

        $user = array(
            'id' => null,
            'firstname' => $params['firstname'],
            'lastname' => $params['lastname']
        );

        $result = $this->user_model->insert($user);
        if ($result) {
            $this->response($result, 200); // 200 being the HTTP response code
        } else {
            $this->response(NULL, 404);
        }
    }

}

答案 1 :(得分:4)

//You should use

$array=array(
'firstName'   => $this->input->post("firstName"),
'lastName'   => $this->input->post("lastName")
);

答案 2 :(得分:1)

我认为您没有使用正确的函数来获取您想要发布的数据的值但是您正试图进入$this->post('name')

你应该使用CI的方法来获得像

这样的值
$this->input->post('name');

$this->input->get('name');


            $user = array(
                'id' => null,
                'firstname' => $this->input->post('firstname'),
                'lastname' => $this->input->post('lastname')
            );

你应该看看Input class

答案 3 :(得分:0)

使用CodeIgniter,您可以像

那样访问帖子变量
$this->input->post('variable_name');

如果你有

$config['global_xss_filtering'] = TRUE;

在配置文件中,它将停止跨站点脚本,所以要小心

答案 4 :(得分:0)

当您将POST的URL中的参数传递给CI RestController时,您需要使用 $this->input->get('id')代替$this->get('id') [即如果在网址中传递了ID]。

$this->get('id')不适用于POST URL参数(例如:http://abcd.xyz.com/get_stuff?id=1)。

虽然$this->get('id')因某种原因似乎与GET合作。

答案 5 :(得分:0)

我在使用codeigniter中的REST编写web服务时遇到了同样的问题。

解决方案==&gt;您应该在标头请求中设置content-type。

- 由于您要以json格式发送帖子数据,您应该将content-type设置为application / json

- 如果您在任何其他客户端设置内容类型测试您的响应为“application / x-www-form-urlencoded”

答案 6 :(得分:0)

     $postdata = file_get_contents("php://input");
      header('Content-type: application/json');
      $obj = json_decode($postdata,true);
      $firstname=$obj['firstname'];
      $lastname=$obj['lastname']; and pass to an array

答案 7 :(得分:0)

在REST API中

=&GT;如果您想使用get方法从服务器获取数据,请使用下面的代码

$user = json_decode(
    file_get_contents('http://example.com/index.php/api/user/id/1/format/json')
);

echo $user->name;

=&GT;如果要将数据插入/更新到服务器,则需要使用下面的表单操作

<form method="post" id="validateFrm" action="http://example.com/index.php/api/create">
    <div class="row">
        <label>Name*</label>
        <input type="text" class="input-field" name="name" id="name" /> 
    </div>
    <div class="row">
         <label>Email</label>
         <input type="text" class="input-field" name="email" /> 
    </div>
    <div class="row last-row">
        <input type="submit" name="submit" value="submit">
    </div>
</form>

现在您可以在控制器/方法中使用所有表单元素,如

$name = $this->post('name');
$email = $this->post('email');

享受!!

答案 8 :(得分:0)

这里存在两种类型的条件。 如果从服务器获取数据,则需要设置格式:

[FOR REST Client]

$this->rest->format('application/json');

[适用于Android排球]

public Map<String, String> getHeaders() throws AuthFailureError
headers.put("Content-Type", "application/json; charset=UTF-8");
}

如果您从客户端向服务器发送数据,则需要设置格式: [FOR REST Client]

$this->rest->format('application/x-www-form-urlencoded');

[适用于Android排球]

public Map<String, String> getHeaders() throws AuthFailureError
headers.put("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");
}

答案 9 :(得分:0)

你应该像这样编码:

$data=array{

'firstname' => $this->input->('firstname'),
'email' => $this->input->post('email')
}

$this->user_model->update($data);*emphasized text*