codeigniter在我的电脑上很好地显示了json格式,但在其他电脑上却没有

时间:2019-03-05 01:44:16

标签: json codeigniter

我有一个问题.....我试图用codeigniter3.1.7实现rest_client,将代码植入最终服务器中,然后在桌面(firefox,windows7)上测试了该链接,我在json format中看到的很好(就像这张图片), 但是如果我尝试在另一台PC上看到它,它只会显示给我蛮横的json响应brute json。 此时,我正在控制器中打印json,这是代码

$config = array('server'        => 'http://api.mercadopublico.cl/',
                //'api_key'         => 'Setec_Astronomy'
                //'api_name'        => 'X-API-KEY'
                //'http_user'       => 'username',
                //'http_pass'       => 'password',
                //'http_auth'       => 'basic',
                //'ssl_verify_peer' => TRUE,
                //'ssl_cainfo'      => '/certs/cert.pem'
                );

    // Run some setup
    $this->rest->initialize($config);
    $test = $this->rest->get('servicios/v1/Publico/Empresas/BuscarProveedor?rutempresaproveedor=70.017.820-k&ticket=F8537A18-6766-4DEF-9E59-426B4FEE2844');

    $this->output->set_header('Content-Type: application/json; charset=utf-8')
        ->set_output(json_encode(array($test)));

有人可以帮我吗?

pd:对不起,我的英语:)

0 个答案:

没有答案