我是systemJS的新手,并试图探索它。 我们称之为require,如下面HTML中所示。当我在JS文件中调用require()函数时,它正确加载JS文件但在HTML文件中它不起作用..
以下是我的HTML上的SystemJS代码
System.config({ map: { Customerx: 'Customer.js' } });
SystemJS.import('Customerx').then(function (m) {
var x = require("Customerx"); //<-- this works inside JS files but not here why });
答案 0 :(得分:0)
结束此问题。在每个文件中作用域的窗口上都没有Require()。