Сканирование схемы JSON-LD: подробное описание не определено?

Я использую API-интерфейс Google Knowledge Graph Search (kgsearch) для возврата схем (schema.org), но некоторые вложенные элементы не распознаются как json или я что-то упускаю...

url = "https://kgsearch.googleapis.com/v1/entities:search";

request.get(url).query({
  key: KEY,
  types: "Person",
  query:"Taylor Swift", //search expression
  limit: 1,
  indent: true

}).end(function(err, response){
  console.log(response.body.itemListElement.detailedDescription);
});

В документации API Google он должен возвращать что-то вроде:

  [{"@type": "ItemList",
  "itemListElement": [
    {
      "@type": "EntitySearchResult",
      "result": {
        "@id": "kg:/m/0dl567",
        "name": "Taylor Swift",
        "@type": [
          "Thing",
          "Person"
        ],
        "description": "Singer-songwriter",
        "image": {
          "contentUrl": "https://t1.gstatic.com/images?q=tbn:ANd9GcQmVDAhjhWnN2OWys2ZMO3PGAhupp5tN2LwF_BJmiHgi19hf8Ku",
          "url": "https://en.wikipedia.org/wiki/Taylor_Swift",
          "license": "http://creativecommons.org/licenses/by-sa/2.0"
        },
        "detailedDescription": {
          "articleBody": "Taylor Alison Swift is an American singer-songwriter and actress. Raised in Wyomissing, Pennsylvania, she moved to Nashville, Tennessee, at the age of 14 to pursue a career in country music. ",
          "url": "http://en.wikipedia.org/wiki/Taylor_Swift",
          "license": "https://en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License"
        },
        "url": "http://taylorswift.com/"
      },
      "resultScore": 896.576599
    }]

Но вот что возвращает node.js:

[ { '@type': 'EntitySearchResult',
    result: 
     { '@id': 'kg:/m/0576bq',
       name: '2005–06 NHL season',
       '@type': [Object],
       description: 'Sports League Season',
       detailedDescription: [Object] },
    resultScore: 10.426484 } ]

Почему поле detailDescription не возвращается в виде строки? Когда я попытался получить к нему доступ напрямую, он возвращает «неопределенное».

Спасибо!


person 0cnLaroche    schedule 16.04.2017    source источник


Ответы (1)


Он возвращает объект JSON, а не строку, поэтому вам нужен метод JSON.stringify для печати вложенных объектов в строковом формате. console.log(JSON.stringify(response.body.itemListElement.detailedDescription, null, 4));

person Ming L.    schedule 28.04.2019