使用Ionic v4和InAppBrowser,有没有办法引用位于应用程序Angular组件中的对象和变量?
例如,我有一个名为home.component.ts的组件。该组件加载后将运行:
const iabWindow = this.iab.create('assets/path/index.html', '_blank', this.options);
在初始化此InAppBrowser的home.component.ts内部,也是这样的变量:
var API = { // various functions and data inside }
我拥有index.html,它与应用程序捆绑在一起。
是否可以使用InAppBrowser或任何其他方法在index.html中引用此API变量?