AMP HTML页面不适用

时间:2017-04-13 08:18:35

标签: html symfony amp-html

您好我正在尝试将我的页面整合为放大器https://www.ampproject.org/

我已经将文档中的例子复制并粘贴到我的页面中。

<!doctype html>
<html amp lang="en">
  <head>
    <meta charset="utf-8">
    <script async src="https://cdn.ampproject.org/v0.js"></script>
    <title>Hello, AMPs</title>
    <link rel="canonical" href="http://example.ampproject.org/article-metadata.html" />
    <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
    <script type="application/ld+json">
      {
        "@context": "http://schema.org",
        "@type": "NewsArticle",
        "headline": "Open-source framework for publishing content",
        "datePublished": "2015-10-07T12:02:41Z",
        "image": [
          "logo.jpg"
        ]
      }
    </script>
    <style amp-boilerplate>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style><noscript><style amp-boilerplate>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript>
  </head>
  <body>
    <h1>Welcome to the mobile web</h1>
  </body>
</html>

我正在尝试检查我的网页是否被识别为放大器页面。

所以我创建了一个新路由并将参数放在我的chrome控制台中进行调试验证。

但我有这个错误:

  

由AMP提供支持HTML - 版本1491601970987   http://local.dev/amp/actualites/test#development=1

     

validator.js:380 AMP验证有错误:

     

validator.js:380 http://local.dev/amp/actualites/test:28:0内联   AMP文档中不允许使用'style'属性。使用'风格   而不是'amp-custom'标签。 (看到   https://www.ampproject.org/docs/guides/responsive/style_pages

     

validator.js:380 http://local.dev/amp/actualites/test:28:69标签   除特定形式外,不允许使用“脚本”。

     

validator.js:380 http://local.dev/amp/actualites/test:28:19029标签   除特定形式外,不允许使用“脚本”。

看起来该页面不是放大器。但我不明白,我只是拿了例子文件!!!

我做错了什么?

https://www.ampproject.org/docs/guides/debug/validate

1 个答案:

答案 0 :(得分:0)

找到它。我使用symfony这是一个php框架。

在开发模式下,框架在DOM中注入一个调试工具栏,内容为html,js等...因为AMP无效。

要解决此问题,您可以停用config_dev.yml文件中的工具栏,或使用app.php

以产品模式运行网站
web_profiler:
    toolbar: true