我想从此响应中显示 featuresImage -> mediaItemUrl 我能够映射 authorId 和 title 的东西,但是如何获取图像的媒体 URL
const ALL_BLOGS = gql`
{
posts(last: 10) {
nodes {
authorId
guid
title
commentCount
commentStatus
author {
node {
name
}
}
date
pinged
uri
featuredImage {
node {
mediaItemUrl
}
}
}
}
}
这是 ReactJS 代码代码片段