在Angular2中配置外部项目时总是遇到一些麻烦。

我想在我的项目中包括ng2-sharebuttons。 (似乎没有全局.d.ts文件?)

尽管README.md只是说npm install ng2-sharebuttons --save,但我知道还有更多的东西(systemjs.configtypings)

首先,我尝试将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的结构和文件:

angular - 外部JavaScript库在 &#39;{module}/dist/&#39;上返回404-LMLPHP

最后,Chrome当前正在生成错误消息:

angular - 外部JavaScript库在 &#39;{module}/dist/&#39;上返回404-LMLPHP

整个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和一个XHR finished loading: GET ....,这似乎很奇怪。

最佳答案

你需要这样做

map:{
   'ng2-sharebuttons' : 'npm:ng2-sharebuttons/dist'
},

packages: {
   app: {main: './main.js', defaultExtension: 'js'},
   rxjs: {defaultExtension: 'js'},

   'ng2-sharebuttons': {main: 'index.js', defaultExtension: 'js'}
}

关于angular - 外部JavaScript库在 '{module}/dist/'上返回404,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41185817/

10-10 00:43