“{module}/dist/”上的外部 javascript 库 returns 404
External javascript library returns 404 on '{module}/dist/'
在 Angular2 中配置外部项目时总是遇到一些问题。
我想在我的项目中包含 ng2-sharebuttons。 (似乎没有全局 .d.ts
文件?)
虽然 README.md
只是说 npm install ng2-sharebuttons --save
,但我知道这里面还有更多的东西 (systemjs.config
& typings
)
首先,我尝试配置 systemjs.config
具有:
map{
......
'ng2-sharebuttons' : 'node_modules/ng2-sharebuttons'
}
这至少修复了 localhost/ng2-sharebuttons
上的 404
,但在 localhost/node_modules/ng2-sharebuttons
上创建了一个新的 404
。
所以,我添加了一个主文件,将 systemjs.config
更改为
map{
......
'ng2-sharebuttons' : 'node_modules/ng2-sharebuttons/dist/index.js'
}
但是现在这会在 ng2-sharebuttons/dist
的每个 child 上产生 404
我试过 typings install ng2-sharebuttons --save --global
和 typings install @types/ng2-sharebuttons --save --global
有和没有 --global
标志。
所以我最后的希望是我添加了一个参考,看看它是否可行。添加
/// <reference path="../../node_modules/ng2-sharebuttons/dist/index.d.ts" />
但这并没有改变任何东西。
我忘记了什么?为什么这么难? (或者我只是让它变得困难?)
ng2-sharebuttons
的结构和文件:
最后,Chrome 当前产生的错误消息:
整个systemjs.config.js
/**
* System configuration for Angular 2 samples
* Adjust as necessary for your application needs.
*/
(function (global) {
System.config({
paths: {
// paths serve as alias
'npm:': 'node_modules/'
},
// map tells the System loader where to look for things
map: {
// our app is within the app folder
app: 'app',
// angular bundles
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
// other libraries
'rxjs': 'npm:rxjs',
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
'angularfire2' : 'npm:angularfire2/bundles/angularfire2.umd.js',
'firebase' : 'npm:firebase',
'ng2-bs3-modal': 'npm:ng2-bs3-modal',
'ng2-sharebuttons' : 'npm:ng2-sharebuttons/dist/index.js',
'ng2-social-share' : 'npm:ng2-social-share/bundles/ng2-social-share.js'
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
app: {
main: './main.js',
defaultExtension: 'js'
},
rxjs: {
defaultExtension: 'js'
},
firebase: {
main: './firebase-browser.js',
defaultExtension: 'js'
}
}
});
})(this);
它会抛出一个错误 GET .... 404
,但也会在同一个 component/service/file 上抛出一个 XHR finished loading: GET ....
,这看起来很奇怪。
抱歉,我的公司代理不允许我查看附加的图片...
但看起来您还没有通过网络服务器静态公开 node_modules
。
你没有特别提到你的服务器技术,但是 node/express 把这个放在 app.js:
app.use('/node_modules', express.static(path.join(__dirname, './node_modules')));
或者,使用构建脚本将相关的 js 文件复制到您的 express scripts
(或类似)文件夹,然后将您的 system.config 映射指向脚本文件夹。
请记住,/// <reference.../>
标记只是对 Typescript 转译器和智能感知的类型发现的提示。这在 Typescript 2 中不再需要,@types/ 是自动发现的。
你需要这样做
map:{
'ng2-sharebuttons' : 'npm:ng2-sharebuttons/dist'
},
packages: {
app: {main: './main.js', defaultExtension: 'js'},
rxjs: {defaultExtension: 'js'},
'ng2-sharebuttons': {main: 'index.js', defaultExtension: 'js'}
}
在 Angular2 中配置外部项目时总是遇到一些问题。
我想在我的项目中包含 ng2-sharebuttons。 (似乎没有全局 .d.ts
文件?)
虽然 README.md
只是说 npm install ng2-sharebuttons --save
,但我知道这里面还有更多的东西 (systemjs.config
& typings
)
首先,我尝试配置 systemjs.config
具有:
map{
......
'ng2-sharebuttons' : 'node_modules/ng2-sharebuttons'
}
这至少修复了 localhost/ng2-sharebuttons
上的 404
,但在 localhost/node_modules/ng2-sharebuttons
上创建了一个新的 404
。
所以,我添加了一个主文件,将 systemjs.config
更改为
map{
......
'ng2-sharebuttons' : 'node_modules/ng2-sharebuttons/dist/index.js'
}
但是现在这会在 ng2-sharebuttons/dist
404
我试过 typings install ng2-sharebuttons --save --global
和 typings install @types/ng2-sharebuttons --save --global
有和没有 --global
标志。
所以我最后的希望是我添加了一个参考,看看它是否可行。添加
/// <reference path="../../node_modules/ng2-sharebuttons/dist/index.d.ts" />
但这并没有改变任何东西。
我忘记了什么?为什么这么难? (或者我只是让它变得困难?)
ng2-sharebuttons
的结构和文件:
最后,Chrome 当前产生的错误消息:
整个systemjs.config.js
/**
* System configuration for Angular 2 samples
* Adjust as necessary for your application needs.
*/
(function (global) {
System.config({
paths: {
// paths serve as alias
'npm:': 'node_modules/'
},
// map tells the System loader where to look for things
map: {
// our app is within the app folder
app: 'app',
// angular bundles
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
// other libraries
'rxjs': 'npm:rxjs',
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
'angularfire2' : 'npm:angularfire2/bundles/angularfire2.umd.js',
'firebase' : 'npm:firebase',
'ng2-bs3-modal': 'npm:ng2-bs3-modal',
'ng2-sharebuttons' : 'npm:ng2-sharebuttons/dist/index.js',
'ng2-social-share' : 'npm:ng2-social-share/bundles/ng2-social-share.js'
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
app: {
main: './main.js',
defaultExtension: 'js'
},
rxjs: {
defaultExtension: 'js'
},
firebase: {
main: './firebase-browser.js',
defaultExtension: 'js'
}
}
});
})(this);
它会抛出一个错误 GET .... 404
,但也会在同一个 component/service/file 上抛出一个 XHR finished loading: GET ....
,这看起来很奇怪。
抱歉,我的公司代理不允许我查看附加的图片...
但看起来您还没有通过网络服务器静态公开 node_modules
。
你没有特别提到你的服务器技术,但是 node/express 把这个放在 app.js:
app.use('/node_modules', express.static(path.join(__dirname, './node_modules')));
或者,使用构建脚本将相关的 js 文件复制到您的 express scripts
(或类似)文件夹,然后将您的 system.config 映射指向脚本文件夹。
请记住,/// <reference.../>
标记只是对 Typescript 转译器和智能感知的类型发现的提示。这在 Typescript 2 中不再需要,@types/ 是自动发现的。
你需要这样做
map:{
'ng2-sharebuttons' : 'npm:ng2-sharebuttons/dist'
},
packages: {
app: {main: './main.js', defaultExtension: 'js'},
rxjs: {defaultExtension: 'js'},
'ng2-sharebuttons': {main: 'index.js', defaultExtension: 'js'}
}