当我尝试从布局页面导入boot.js时,我一直收到404错误。
以下是我用来导入它的代码:
<!-- Configure SystemJS -->
<script src="/appScripts/config.js"></script>
<script>
System.import('/appScripts/boot')
.then(null, console.error.bind(console));
</script>
当我使用index.html(在wwwroot中看到)时,一切正常,但是当我尝试使用/views/shared/_layout.cshtml
时这是我的config.js
(function (global) {
// map tells the System loader where to look for things
var map = {
'app': 'appScripts', // 'dist',
'rxjs': 'libs/rxjs',
'angular2-in-memory-web-api': 'libs/angular2-in-memory-web-api',
'@angular': 'libs/@angular'
};
// packages tells the System loader how to load when no filename and/or no extension
var packages = {
'app': { main: 'boot.js', defaultExtension: 'js' },
'rxjs': { defaultExtension: 'js' },
'angular2-in-memory-web-api': { defaultExtension: 'js' },
};
var packageNames = [
'@angular/common',
'@angular/compiler',
'@angular/core',
'@angular/http',
'@angular/platform-browser',
'@angular/platform-browser-dynamic',
'@angular/router',
'@angular/router-deprecated',
'@angular/testing',
'@angular/upgrade',
];
// add package entries for angular packages in the form '@angular/common': { main: 'index.js', defaultExtension: 'js' }
packageNames.forEach(function (pkgName) {
packages[pkgName] = { main: 'index.js', defaultExtension: 'js' };
});
var config = {
map: map,
packages: packages
}
// filterSystemConfig - index.html's chance to modify config before we register it.
if (global.filterSystemConfig) { global.filterSystemConfig(config); }
System.config(config);
})(this);
非常感谢您的帮助,如果您需要更多信息,请与我们联系。
答案 0 :(得分:1)
我以为我曾尝试过这个,但很难跟踪这一切。这是我解决这个问题的方法。注意baseURL行。
(function () {
if (_.VERSION) {
console.log('underscore loaded');
}
})();