在Angular2中配置外部项目时总是遇到一些麻烦。
我想在项目中加入ng2-sharebuttons。 (似乎没有全局.d.ts
文件?)
虽然README.md
只是说npm install ng2-sharebuttons --save
,但我知道还有更多内容(systemjs.config
& typings
)
首先,我尝试配置systemjs.config
:
map{
......
'ng2-sharebuttons' : 'node_modules/ng2-sharebuttons'
}
这至少修复了404
localhost/ng2-sharebuttons
,但在404
上创建了新的localhost/node_modules/ng2-sharebuttons
。
所以,我添加了一个主文件,将systemjs.config
更改为
map{
......
'ng2-sharebuttons' : 'node_modules/ng2-sharebuttons/dist/index.js'
}
但现在这会导致404
ng2-sharebuttons/dist
我尝试使用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
但这并没有改变任何事情。
我忘记了什么?为什么这么难? (或者我只是努力工作?)
结构&amp; systemjs.config.js
的文件:
最后,Chrome目前正在生成错误消息:
整个/**
* 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
它在同一个组件/服务/文件上抛出错误XHR finished loading: GET ....
,但也是public class UsersAdapter extends BaseAdapter {
Context context;
OnClickButtonOnList onClickButtonOnList;
public UsersAdapter(Context context, ArrayList<User> users, OnClickButtonOnList onClickButtonOnList) {
this.context = context;
this.users = users;
this.onClickButtonOnList = onClickButtonOnList;
}
public View getView(final int position, View convertView,ViewGroup parent)
{
if(convertView == null)
{
LayoutInflater inflater = getLayoutInflater();
convertView = (LinearLayout)inflater.inflate(R.layout.YOUR_LAYOUT, null);
}
Button Button1= (Button) convertView .findViewById(R.id.BUTTON1_ID);
Button1.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
onClickButtonOnList.onClickButtonInItem(position);
}
});
return convertView ;
}
public interface OnClickButtonOnList {
public void onClickButtonInItem(int position);
}
}
,这看起来很奇怪。
答案 0 :(得分:1)
道歉,但我的公司代理不会让我查看附加的图像......
但看起来好像你没有通过网络服务器静态曝光node_modules
。
您没有具体提到您的服务器技术,但是使用node / express将其放在app.js中:
app.use('/node_modules', express.static(path.join(__dirname, './node_modules')));
或者,使用构建脚本将相关的js文件复制到快速scripts
(或类似)文件夹,然后将system.config映射指向脚本文件夹。
请记住,/// <reference.../>
标记只是对Typescript转换器和intellisense进行类型发现的提示。在Typescript 2中不再需要这样,其中@ types /是自动发现的。
答案 1 :(得分:1)
你需要这样做
map:{
'ng2-sharebuttons' : 'npm:ng2-sharebuttons/dist'
},
packages: {
app: {main: './main.js', defaultExtension: 'js'},
rxjs: {defaultExtension: 'js'},
'ng2-sharebuttons': {main: 'index.js', defaultExtension: 'js'}
}