我确实将Web应用程序在聚合物1上打包为chrome扩展名,但不允许使用内联js脚本。
是否有任何现成的自动解决方案(例如webpack插件),用于将HTML文件中嵌入的所有js脚本通过进一步的连接移动到单独的文件中。
例如:
example-view.html:
<dom-module id="editable-name-tag">
<template>
<p>This is <strong>{{owner}}</strong>'s editable-name-tag.</p>
<input is="iron-input" bind-value="{{owner}}"
placeholder="Your name here...">
</template>
<script>
Polymer({
is: "editable-name-tag",
properties: {
owner: {
type: String,
value: "Daniel"
}
}
});
</script>
</dom-module>
转换为:
example-view.html:
<dom-module id="editable-name-tag">
<template>
<p>This is <strong>{{owner}}</strong>'s editable-name-tag.</p>
<input is="iron-input" bind-value="{{owner}}"
placeholder="Your name here...">
</template>
<script src="script.js"></script>
</dom-module>
和 script.js :
Polymer({
is: "editable-name-tag",
properties: {
owner: {
type: String,
value: "Daniel"
}
}
});