有没有办法在 AMP 列表中使用 Blogger?alt=Json 提要

Is there is a way to use Blogger ?alt=Json feed in AMP-list

我已经看到 amp-list 使用 src="example.com/json"。但是有没有办法在 amp-list 中使用博主 json 提要?

<amp-list width="auto" height="140" layout="fixed-height" 
src="https://example.blogspot.com/feeds/posts/default?alt=json">
<template type="amp-mustache">
-----
</template>
</amp-list>

您应该能够使用以下模板配置呈现来自 Blogger 提要的数据 -

<amp-list width="auto" height="140" layout="fixed-height" items="feed.entry" src="...?alt=json">
  <template type="amp-mustache">
    <div class="title">{{#title}}{{$t}}{{/title}}</div> <!-- Shows the title of the post -->
    <div class="content">{{#content}}{{{$t}}}{{/content}}</div> <!-- Shows santized content -->
  </template>
</amp-list>

是的,有一种方法可以在 amp list 中使用 blogger JSON; 为此,您需要提及 items='feed.entry' 才能进入 JSON 的子部门 然后按照小胡子模板指南获取所需字段。