我按照这个示例在 AMP 上实现了“显示更多”操作。它工作得很好,但是当我单击按钮时,它没有显示任何内容,让用户知道页面正在加载。
我的后端不是特别快,所以它看起来直到最终加载时才起作用。
在演示中它也没有任何东西,但它非常快。
有什么可以做的吗?即使它只是禁用按钮。我没有在列表或表单上看到任何类更改,以便在 CSS 上使用它们。
这是我的代码:
amp-state id="#{section}State" src="#{path}"
amp-state id="#{section}"
script type="application/json"
| {
| "page": 2,
| "hasMorePages": true
| }
|<amp-list src="#{path}" layout="responsive" height="600px" width="600px" [src]="#{section}State.items" [height]="(#{section}State.items.length / 3) * 400">
template[type="amp-mustache"]
= render partial: item_template, locals: { image: image }
|</amp-list>
form method="GET" action="#{path}" action-xhr="#{path}" target="_top" on="submit-success: AMP.setState({ #{section}State: { items: #{section}State.items.concat(event.response.items) }, #{section}: { page: #{section}.page + 1, hasMorePages: event.response.hasMorePages } });" novalidate=""
|<input type="hidden" name="page" value="2" [value]="#{section}.page">
|<input type="submit"
value="Show more"
class="show-more"
[class] = "(#{section}.hasMorePages == false ? 'hide' : 'ampstart-btn caps m1 mb3 show show-more')">
它只是示例中的一个,有一些命名更改。