json_decode()期待一个字符串,我只能得到一个数组

时间:2013-06-17 23:09:45

标签: php rest json slim

我正在使用 Slim Framework ,尝试构建 REST API 。简而言之,我已经花了4个小时为我的问题寻找解决方案,这就是json_decode不会将getBody()返回的数组作为参数。

使用适用于Chrome的高级REST客户端,我执行发布请求时收到的错误是:

Slim Application Error
The application could not run because of the following error:

Details

Type: ErrorException
Code: 2
Message: json_decode() expects parameter 1 to be string, array given
File: C:\xampp\htdocs\farmacias\index.php
Line: 100
Trace

#0 [internal function]: Slim\Slim::handleErrors(2, 'json_decode() e...', 'C:\xampp\htdocs...', 100, Array)
#1 C:\xampp\htdocs\farmacias\index.php(100): json_decode(Array)
#2 [internal function]: {closure}()
#3 C:\xampp\htdocs\farmacias\Slim\Router.php(172): call_user_func_array(Object(Closure), Array)
#4 C:\xampp\htdocs\farmacias\Slim\Slim.php(1222): Slim\Router->dispatch(Object(Slim\Route))
#5 C:\xampp\htdocs\farmacias\Slim\Middleware\Flash.php(86): Slim\Slim->call()
#6 C:\xampp\htdocs\farmacias\Slim\Middleware\MethodOverride.php(94): Slim\Middleware\Flash->call()
#7 C:\xampp\htdocs\farmacias\Slim\Middleware\ContentTypes.php(80): Slim\Middleware\MethodOverride->call()
#8 C:\xampp\htdocs\farmacias\Slim\Middleware\PrettyExceptions.php(67): Slim\Middleware\ContentTypes->call()
#9 C:\xampp\htdocs\farmacias\Slim\Slim.php(1174): Slim\Middleware\PrettyExceptions->call()
#10 C:\xampp\htdocs\farmacias\index.php(139): Slim\Slim->run()
#11 {main}

我的代码,是第100行的json_decode

// POST /localidades
$app->post('/localidades', function () use ($app){
    // Obtenemos el cuerpo del request, y lo decodificamos
    $request = $app->request();
    $body = $request->getBody();
    $input = json_decode($body);

    // Creamos y guardamos el registro
    $eloc = R::dispense('localidades');
    $eloc->nombre = (string)$input->nombre;
    $eloc->provincia = (string)$input->provincia;
    R::store($eloc);

    // Creamos y devolvemos JSON
    $app->response()->status(201);
    $app->response()->header('Content-Type','application/json');
    echo json_encode(R::exportAll($eloc));

});

如果有人能帮助我,我会很高兴的。当然,我也想知道我做错了什么或接近错误的方式。我花了很多时间寻找答案而我找不到任何答案。

1 个答案:

答案 0 :(得分:2)

你已经在$ input中解码了数据,所以不需要在那里解码任何东西。您还可以避免不必要的演员,因为在这种情况下不需要这些演绎(PHP是一种弱类型语言)。