为什么 Google Google 助理无法大声朗读某些页面?

Why can't Google Assistant read some pages aloud?

我希望这是问这个问题的正确渠道。 我找了很多都没有成功。

我注意到 Google Google 助理有时无法阅读某些网页。 这是一个失败的基本方法:

<html>
  <head>
    <meta charset="utf-8">
    <meta name="Description" CONTENT="Sample for Google assistant">
    <title>Sample for Google assistant</title>
  </head>
<body>
    <h1>A title</h1>
<p>
    Here is an text sample.
</p>
</body>
</html>

您知道 Google 助理要能够阅读页面应该满足哪些条件吗? 是跟页面结构、域名还是其他什么有关?

非常感谢!

最好的, 帕特

很高兴终于有人提问了。

该页面必须至少有 2 个段落,而且第一段看起来必须至少有 270 个字符。我刚刚做了严格的测试并发现了这一点。

以下将起作用

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="Description" CONTENT="Sample for Google assistant">
    <title>Sample for Google assistant</title>
</head>

<body>
    <h1>A title</h1>
    <p>
    Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.
    </p>
    <p>
        Here is an text sample.
    </p>

</body>

</html>

此外,即使您没有提出这个问题:Google 辅助似乎也无法阅读超过 4 div 深度的内容。 例如,我必须注释掉下面的 divs 才能让我自己的网页正常工作,我不确定为什么,但我假设它的深度是 div。

<html lang="en">
   <body class="bg-light">
      <div class=" ">
         <div class="content">
            <div class="container container-small bg-white Pa_50px rounded my-2">
               <div style="" class="row">
                  <!-- <div style="" class="Wi_100Per   BoSi_BoBo"> -->
                     <!-- <div style="vertical-align:top;" class="Wi_100Per    d-inline-block"> -->
                        <!-- <div class="p-2"> -->
                          <!-- <pre style="white-space: pre-wrap;"> -->
                            <p>
                              Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.Here is an text sample.
                            </p>
                            <p>
                              Here is an text sample.
                            </p>
                          <!-- </pre> -->
                        <!-- </div> -->
                     <!-- </div> -->
                  <!-- </div> -->
               </div>
            </div>
         </div>
      </div>
   </body>
</html>

脚注:当然要确保您使用 Chrome 开始。我也承认你经历过你只需要一段。