如何在 PSK 中观察 <my-view1> 内的当前选定视图?

How do I observe the current selected view inside <my-view1> in PSK?

在 Polymer-Starter-Kit 中,如何在 <my-view1> 中观察当前选定的视图,以便我可以创建一个观察者并且仅在 <my-view> 为 [=15= 时触发它]?

在 iron-pages 元素中,包含如下属性 "selected-attribute":

<iron-pages
  selected="[[page]]"
  attr-for-selected="name"
  fallback-selection="view404"
  selected-attribute="selected"
  role="main">

并在每个视图中包含一个名为 "selected" 的 属性。您可以为此选定的 属性 设置一个观察者。当页面显示时为真,否则为假。