端点无法使用SLIM框架在PHP中正确发出POST请求

时间:2018-12-14 10:15:48

标签: php post get request slim

我正在尝试使用tutorial之后的SLIM框架来制造一个应该连接到数据库的API服务器。实际上,我创建了一个端点,该端点从数据库中获取数据,但是无法插入新端点。

每次我尝试插入新数据时,POST参数均为空,并且数据库仅发送错误消息。

在我的groupes.php中,我有以下内容:

<?php

use Slim\Http\Request;
use Slim\Http\Response;

// Routes

$app->get('/[{name}]', function (Request $request, Response $response, array$args) {
   // Sample log message
   $this->logger->info("Slim-Skeleton '/' route");

   // Render index view
   return $this->renderer->render($response, 'index.phtml', $args);
});

$app->group('/api', function () use ($app) {

   $app->group('/v1', function () use ($app) {
       $app->get('/clients', 'getClients');
       $app->post('/make', 'addClient');
   });
});

上面的代码仅用于定义两个端点:getClientsaddClient

在我的index.php中,我有:

function getConnection(){
    $dbhost = "127.0.0.1";
    $dbuser = "root";
    $dbpass = "dzpga883yRusPHhv";
    $dbname = "pruebaandroid";
    $dbh = new PDO("mysql:host=$dbhost;dbname=$dbname", $dbuser, $dbpass);
    $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    return $dbh;
}

//method: GET
//domain: mi-api/api/v1/clients
function getClients($response){
    $sql = "SELECT * FROM cliente";
    try{
        $stmt = getConnection()->query($sql);
        $client = $stmt->fetchAll(PDO::FETCH_OBJ);
        $db = null;

        return json_encode($client);
    } 

    catch(PDOException $e){
        echo '{"error":{"text":'. $e->getMessage() .'}}';
    }
}

//method: POST
//domain: mi-api/api/v1/make
function addClient($request) {
    $client = json_decode($request->getBody());

    $sql = 'INSERT INTO cliente (nombre, apellido, cedula, direccion, telefono, email) VALUES (:nombre, :apellido, :cedula, :direccion, :telefono, :email)';

    try {
        $db = getConnection();
        $stmt = $db->prepare($sql);
        $stmt->bindParam(":nombre", $client->nombre);
        $stmt->bindParam(":apellido", $client->apellido);
        $stmt->bindParam(":cedula", $client->cedula);
        $stmt->bindParam(":direccion", $client->direccion);
        $stmt->bindParam(":telefono", $client->telefono);
        $stmt->bindParam(":email", $client->email);
        $stmt->execute();
        $client->id = $db->lastInsertId();
        $db = null;
        echo json_encode($client);
    } 

    catch(PDOException $e){
        echo '{"error":{"text":'. $e->getMessage() .'}}';
    }
}

因此,使用邮递员执行GET请求来mi-api/api/v1/clientes检索所有指定的数据,但是当我尝试使用POST请求mi-api/api/v1/make?nombre=asdf&apellido=asdf&cedula=asdf&direccion=asdf&telefono=asdf&email=asdf时,应该插入新信息,但邮递员会给我出现以下错误:

{"error":{"text":SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'nombre' cannot be null}}

就像addClient函数一样,它没有获取参数,因此将其作为null。为什么会这样呢?我不知道这里出了什么问题,欢迎任何答复。

查看图片 enter image description here

PD:是的,数据库格式正确,它具有作为PK自动增量的ID,我尝试打印echo client->nombre并仅打印错误。

1 个答案:

答案 0 :(得分:1)

您正在将参数作为GET参数(添加在网址上)添加。

使用BODY->表单数据标签来指定POST参数(与PARAMS标签中的参数相同)

enter image description here