在聚合物2.0中导入js库
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在聚合物2.0中导入js库相关的知识,希望对你有一定的参考价值。
我正面临一个问题,我想知道如何将外部javascript“库/文件”导入我的聚合物项目。我想在聚合物中使用htmlToPdf.js库。但我无法调用htmlToPdf.js上的函数。
答案
如果要在不同组件中重用库,则最好创建导入组件
<!-- htmlToPdf-import.html -->
<script src="../htmlToPdf/htmlToPdf.js" charset="utf-8"></script>
<!-- my-component.html -->
<link rel="import" href="./htmlToPdf-import.html">
<dom-module id="my-component">
<template>
</template>
<script>
class MyComponent extends Polymer.Element {
static get is() {
return 'my-component';
}
}
window.customElements.define(MyComponent.is, MyComponent);
</script>
</dom-module>
另一答案
您可以使用常规<script>
标记在Polymer组件中导入它。
以上是关于在聚合物2.0中导入js库的主要内容,如果未能解决你的问题,请参考以下文章
无法在 PyCharm 2019.2 中导入 Keras(来自 TensorFlow 2.0)