我想要加载文件:http://localhost/app/modules/overview/overview.module.js?id=12345
这是我对systemJS的配置:
(function (global) {
System.config({
baseURL: "/",
paths: {
//...
},
map: {
//...
},
packages: {
//...
}
});
var systemLocate = System.locate;
System.locate = function (load) {
var System = this;
return Promise.resolve(systemLocate.call(this, load)).then(function (address) {
return address + System.cacheBust;
});
};
System.cacheBust = "?id=" + 12345;
})(this);
为什么没有get-parameter(http://localhost/app/modules/overview/overview.module.js
)加载文件?
我使用的是Angular 4.x和systemJS 0.20.18