我正在尝试为聚合物2.0应用中的元素添加一些“addthis”按钮。我能够导入“addthis”javascript但它接缝脚本本身需要更新作为子元素一部分的“div”。 addthis脚本正在寻找class="addthis_inline_share_toolbox"
这可能吗?我认为问题是脚本无法在阴影dom中找到该类。如何从阴影dom中提供该类,以便脚本可以找到它?有没有办法通过聚合物属性创建这种访问?
<dom-module id="poem-card">
<template>
<style>
:host {
display: block;
}
img {
width: 100%
}
paper-card {
--paper-card-header-text: {
font-family: 'Fascinate Inline', cursive;
color: yellow;
font-size: xx-large;
};
--paper-card-header{
position: 50%;
};
}
.card-content *{
margin: 8px 0;
font-weight: bold;
font-family: 'Alegreya Sans SC', sans-serif;
}
</style>
<iron-ajax
auto
url="https://api.json"
handle-as="json"
last-response="{{response}}">
</iron-ajax>
<paper-card heading="{{response.items.0.title}}" image="https://placeimg.com/600/400/nature/sepia" alt="{{response.items.0.title}}">
<div class="card-content">
<p inner-h-t-m-l="{{response.items.0.content}}"></p>
</div>
<div class="card-actions">
<div class="addthis_inline_share_toolbox"></div>
</div>
</paper-card>
</template>
<script>
/**
* `poem-card`
* an individual poem in card form
*
* @customElement
* @polymer
* @demo demo/index.html
*/
class PoemCard extends Polymer.Element {
static get is() { return 'poem-card'; }
static get properties() {
return {
prop1: {
type: String,
value: 'poem-card'
}
};
}
}
window.customElements.define(PoemCard.is, PoemCard);
</script>
<script type="text/javascript" src="/addthis.js"></script>
代码
答案 0 :(得分:0)
Web Components的影子dom的想法是没有其他脚本可以改变Web Compontnet的Dom。因此,要使其工作,您需要为外部脚本提供组件文档的实例,如new addThis(Polymer.dom(this.root))
。
这只是事实的一半,因为如果你使用聚合物1并且告诉它使用阴影dom你的脚本可能只是工作正常,因为这个限制仅适用于影子dom,因此这个anwser用于聚合物2。