dsfykqq3403 2016-12-29 16:00
浏览 63
已采纳

Symfony3 - 未定义索引(解码JSON-> Object-> Array)

I create Project Manager Software online, but I have error: picture with data and error

From JavaScript I send data(you can see on the picture), next I get it and decode JSON in result I have stdClass(I try get data for example $data->{"calendarId"}, but I get error: Undefined property: stdClass). Object is converted to array, but again is error. Fragment code:

if($request->isXmlHttpRequest()) {
        $data=json_decode($request->getContent());
        $data=get_object_vars($data);
        echo var_dump($data);
        echo print_r($data);
        //echo $data->{'startTime'} == ERROR Undefined property stdClass
        echo $data["startTime"];
}

I watched many soulation but problem still keep

  • 写回答

1条回答 默认 最新

  • doutan1637 2016-12-29 16:57
    关注

    The error seems very clear: You should use startTask not startTime

    echo $data["startTask"];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?