我可以在我的html文件me.html中定义一个模块:
import Atom from './atom.js';
console.log("definition of getAtom")
export default function getAtom(){
return new Atom('atom');
}
console.log("exported getAtom")
另见
=>是否可以将该“匿名”模块导入同一html文件中的另一个模块脚本?或者某些“代码隐藏” – 也是由me.html文件加载的JavaScript文件?出口似乎有效;至少它不会抛出任何错误.
为了导入getAtom方法,我尝试了例如:
import getAtom from '.'; //this line does not work
console.log("usage of getAtom")
var atom = getAtom();
我希望有一些语法
import getAtom;
import getAtom from '.';
import getAtom from window;
import getAtom from './me.html';
import getAtom from '.DEFAULT_MODULE';
但是,这些线都不起作用.
=>如果可能的话,引用“匿名”模块的正确语法是什么?
我使用Chrome版本63.0.3239.108.
相关问题: