我正在学习 Polymer,但在应用程序路由和应用程序位置方面遇到了一些问题。我尝试了一个像这样的简单示例:
<dom-module id="test-component">
<template>
<style scoped>
</style>
<app-location route="{{route}}" use-hash-as-path></app-location>
<app-route route="{{route}}" pattern="/test/:advisor_id/:user_id"
data="{{data}}" tail="{{subroute}}">
</app-route>
route : [[route.path]]<br>
data.advisor_id : [[data.advisor_id]]<br>
data.user_id : [[data.user_id]]
</template>
<script>
Polymer({
is: "test-component",
properties: {
route: String,
data: Object
},
ready: function() {
console.log(this.route);
}
});
</script>
</dom-module>
主页仅加载组件并在正文上有测试组件标签使用 url localhost/test/advisor_id/14152,我看到了组件,但 data.advisor_id 和 data.user_id 为空。我测试了 route.path 它也是空的。
好像我忘记了什么,但不明白它是什么。
在此先感谢您的时间