我正在为 Polymer 创建一个自定义模块。我需要创建一个可以在定义模板时访问的全局变量。就像是:
<template is="dom-if" if="[[_check(myGlobalVar.foo)]]">
全局变量也应该可以从模块内部直接访问(参见 _anotherFunction)。JS 文件如下所示:
Polymer({
is: 'my-module',
_check(f) {
return f == 'foobar'
},
_anotherFunction() {
console.log(myGlobalVar)
}
})
此外,应该可以从其他文件中的其他模块访问 myGlobalVar。创建它的最佳方法是什么?