我在我的VM的端口5901上运行了一个Polymer应用程序,并使用Apache反向代理从以下URL提供应用程序:
http://www.example.com/polymer
问题是当我在浏览器中访问URL时,我可以看到页面标题但页面是空白的。我也在控制台中收到此错误:
Failed to load resource: the server responded with a status of 404 (Not Found) src/home-page.html
我假设我必须以某种方式将/ polymer子域添加到应用程序的默认URL,但我不知道如何执行此操作。
答案 0 :(得分:1)
编辑:回应评论:
Polymer 2.0路由的相关链接是https://www.polymer-project.org/2.0/toolbox/routing。
更新路线。路由对象是读写的,因此您可以使用双向数据绑定或this.set来更新路由。 route和routeData对象都可以通过这种方式进行操作。例如:
this.set('route.path', '/search/');
或者:
this.set('routeData.user', 'mary');