聚合物教程应用程序呈现空白页面

时间:2014-07-07 03:49:30

标签: polymer

所以..我正在尝试聚合物tutorial,这就是我所遵循的: -

1)下载入门项目

2)将目录更改为启动器后运行python -m SimpleHTTPServer

现在,当我在浏览器中访问localhost:8000时,会打开一个灰色页面。我试过检查元素并发现了这个错误

http://localhost:8000/components/platform/platform.js 404 (File not found)

这是一个带有错误的screenshot

添加信息

操作系统:Windows 8.1 Enterprise 32位

Python:2.7

Chrome:35.0.1916.153 m

2 个答案:

答案 0 :(得分:2)

您需要从整个项目的顶层运行python -m SimpleHTTPServer ...这将是〜/ polymer-tutorial-master目录。然后转到http://localhost:8000/starter查看启动项目。同样,在步骤1,步骤2和步骤3之后看看一切应该是什么样子,您可以导航到http://localhost:8000/step-1等。

答案 1 :(得分:2)

对我来说,/ starter / index.html在样式块中缺少以下代码。任何事情都需要展示:

  core-header-panel {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; 
  }
  core-toolbar {
    background: #03a9f4;
    color: white;
  }