我将Goodreads API结果从XML转换为JSON的方法出了什么问题?

时间:2016-04-05 06:32:42

标签: php json xml api

我有一个名为bookscript.php的PHP页面,专门用于将Goodreads API结果从XML格式转换为JSON格式:

<?php 
    $xml_string = file_get_contents("https://www.goodreads.com/search?q=" .$_REQUEST['search']. "&search%5Bfield%5D=title&format=xml&key=ZuqW9sL15d3JvEwmLyaNCg");
    $xml = simplexml_load_string($xml_string);
    $json = json_encode($xml);
    $array = json_decode($json,TRUE);
    echo $json;
?>

在我的主页上,我将bookscript.php插入这个AJAX调用:

  function GetBooks(request) {
    //Replace spaces with a '+'
    var url = request.term.replace(/\s/g,"+");
    return $.ajax({
        'url': "php/bookscript.php?search=" + url,
        'dataType': 'json'
    }).then(function(data){
        return $.map(data.results || [], function(v,i){
            return {
                label: v.work.title + ' BOOK (' + v.work.original_publication_year + ')',
                value: v.work.title
            }
        });
  })

但这不起作用。当我访问http://www.example.com/php/bookscript.php?search=dog时,页面上显示的所有内容都是“false”。

将此与Goodreads的实际结果进行比较:https://www.goodreads.com/search/index.xml?&key=ZuqW9sL15d3JvEwmLyaNCg&q=dog

所以我的问题是......我的方法出了什么问题?我确实在我的网站上运行了SSL(不确定它是否完全相关),因此应该将其作为问题排除....

我知道GET请求代码应该是有效的,因为相同的代码适用于使用JSON格式的其他API。

编辑:问题实际上是我没有在我的服务器上安装PHP。 =)

2 个答案:

答案 0 :(得分:1)

json_encode期望具有公共属性的数组或对象作为输入。如果失败,则返回布尔值falsesimplexml_load_string会返回SimpleXMLElement

您需要遍历SimpleXMLElement并从中创建一个数组,或者查找为您执行此操作的函数或类。你可以在互联网上找到很多实现。

请参阅此答案:https://stackoverflow.com/a/20431742/1479962

答案 1 :(得分:1)

我已经使用此代码进行了测试,一切都很好,

<?php $xml_string = file_get_contents("https://www.goodreads.com/search?q=dog&search%5Bfield%5D=title&format=xml&key=ZuqW9sL15d3JvEwmLyaNCg");
$xml = simplexml_load_string($xml_string);
$json = json_encode($xml);
$array = json_decode($json,TRUE);?>

<pre>
    <?php print_r($array); ?>
</pre> 

阵列打印如下:

Array
(
    [Request] => Array
        (
            [authentication] => true
            [key] => Array
                (
                )

            [method] => Array
                (
                )

        )

    [search] => Array
        (
            [query] => Array
                (
                )

            [results-start] => 1
            [results-end] => 20
            [total-results] => 26080
            [source] => Goodreads
            [query-time-seconds] => 0.31
            [results] => Array
                (
                    [work] => Array
                        (
                            [0] => Array
                                (
                                    [id] => 10479953
                                    [books_count] => 38...

您的客户端可能有错误?什么是ajax电话的结果?