1
我們的團隊正在建造我們的第一個聚合物在一個頁面的應用程序,我們必須逆向工程被忽略的項目組成部分。我們需要在覈心腳手架中爲標題欄設置標題。這在使用JS的簡單頁面上很容易,但是一些頁面具有顯示內容的條件模板,並且每個頁面都需要它們自己的標題。聚合物腳手架:設置標題每頁:最佳方法
如
<core-scaffolding>
<div id="title">Dynamic Title goes here</div>
<core-animated-pages transitions="cross-fade">
<section>
<div cross-fade>
<my-element>
<template if="{{condition1}}"></template>
Content 1
</template>
<template if="{{condition2}}"></template>
Content 2
</template>
<template if="{{condition3}}"></template>
Content 3
</template>
</my-element>
</div>
</section>
<section>
<div cross-fade></div>
</section>
</core-animated-pages>
我要在模板元素添加的屬性能夠通過標題的值,但是我不知道怎麼用JS找出哪個模板是一個這是有條件呈現(活動)。我似乎無法找到任何文件。此外,我想構建可在任何頁面上全局使用的可重用(不帶ID)的內容。
任何人都可以提供任何建議嗎?
乾杯, 大衛