为什么我的 amp 网站没有显示 amp-facebook-comments ?



我的网站: https://2top.xyz

我的问题:

  • AMP 脸书评论插件未显示

  • 测试地点:https://2top.xyz/dieu-khoan-cung-cap-va-su-dung-dich-vu-tai-website-2top.1574766128301

  • 我在:https://amp.dev/documentation/examples/components/amp-facebook-comments/?format=websites 阅读,我的代码是:

  • 在标题:

<script async custom-element="amp-facebook-comments" src="https://cdn.ampproject.org/v0/amp-facebook-comments-0.1.js"></script>
  • 在我的正文帖子中:
<amp-facebook-comments width="486"
height="657"
layout="responsive"
data-href="https://2top.xyz/dieu-khoan-cung-cap-va-su-dung-dich-vu-tai-website-2top.1574766128301">
</amp-facebook-comments>

我不知道为什么这个插件没有显示,请帮助我!谢谢!

注意:这是我使用golang,upcloud vps和cloudflare cdn构建的自定义网站!

我自己解决了这个问题。因为我没有定义包含<amp-facebook-comments>组件的父<div>的宽度。所以我的最终代码是:

<div class="comment" style="width:100%">
<amp-facebook-comments
width="480"
height="720"
layout="responsive"
data-href="https://2top.xyz/dieu-khoan-cung-cap-va-su-dung-dich-vu-tai-website-2top.1574766128301">
</amp-facebook-comments>
</div>

它现在正在工作!

最新更新