使用Typescript 2.0(TSC版本2.0.3)。

我尝试在angular2/typescript应用程序内部使用xml2js Node 库,但未成功(请参见https://www.npmjs.com/package/xml2js)。似乎很清楚,我对SystemJS设置要使用的库的方式还不够熟悉。

要安装xml2js库,我做了以下工作:

npm install --save xml2js
npm install --save @types/xml2js

以下是相关文件:

tsconfig.json:
{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": false,
    "outDir" : "build"
  }
}

systemjs.config.js
/**
 * System configuration for Angular 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: 'build',
      // 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',
      '@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.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',
      'lodash' : 'npm:lodash',
      'xml2js' : 'npm:xml2js'
    },
    // 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'
      },
      lodash: {
        main : 'index.js',
        defaultExtension: 'js'
      },
      xml2js: {
        defaultExtension: 'js'
      }
    }
  });
})(this);

消耗文件:
import { Injectable } from '@angular/core';
import { Http } from '@angular/http';
import 'rxjs/Rx';
import * as _ from 'lodash';
import * as xml2js from 'xml2js';
@Injectable()
export class CatalogService {
  constructor (private http:Http) {
  }
  getCatalog() {
    //return Promise.resolve(['This', 'That']);
    var xml = "<root>Hello xml2js!</root>"
    xml2js.parseString(xml, function (err, result) {
      alert(result);
    });

    alert(_.indexOf([1, 2, 1, 2], 2));

  }
}

index.html文件
<html>
  <head>
    <title>Angular QuickStart</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="styles.css">
    <!-- 1. Load libraries -->
     <!-- Polyfill for older browsers -->
    <script src="node_modules/core-js/client/shim.min.js"></script>
    <script src="node_modules/zone.js/dist/zone.js"></script>
    <script src="node_modules/reflect-metadata/Reflect.js"></script>
    <script src="node_modules/systemjs/dist/system.src.js"></script>
    <!-- 2. Configure SystemJS -->
    <script src="systemjs.config.js"></script>
    <script>
      System.import('app').catch(function(err){ console.error(err); });
    </script>
  </head>
  <!-- 3. Display the application -->
  <body>
    <dsa-app>Loading DSA App...</dsa-app>
  </body>
</html>

使用该设置,我确实得到如下错误:

zone.js:1382 GET http://localhost:3000/node_modules/xml2js/ 404(未找到)

lodash库可以很好地加载,所以我很确定这里的问题与xml2js库的定义方式有关,而不仅仅是我的设置。

我看到的最接近的解决方案是Angular 2.0有点过时了,但我在这里提供了引用:Use JS library xml2js with Angular 2

尽管该问题专门解决了使用该库的问题,但其他有关如何将XML解析/转换为TypeScript内部可管理内容的想法也将派上用场。

更新:

如建议的那样,我开始将“主要”定义添加到我的systemjs配置中。但是,尽管有一部分原因是我将从 Node 内容中加载/删除依赖项。

因此,将system.config.js修改为具有:
  xml2js: {
    main: 'lib/xml2js.js',
    defaultExtension: 'js'
  },

将问题移到现在我可以为sax和xmlbuilder获得404条目的位置。

因此,我也添加了以下内容:
  sax: {
    main: 'lib/sax.js',
    defaultExtension: 'js'
  },
  xmlbuilder: {
    main: 'lib/index.js',
    defaultExtension: 'js'
  }

哪个解决了sax和xmlbuilder,但是弹出了更多错误。

我认为使用SystemJS和tsconfig的整个想法是从 Node 模块中找出它们,在软件包上添加所有树依赖项似乎无法达到目的。

最佳答案

我认为这里的问题出在您的systemjs配置中-您尚未为xml2js定义main。由于systemjs不知道要加载哪个文件,因此出于某种原因尝试尝试直接加载NPM目录(将/node_modules/xml2js作为文件加载,显然是行不通的)。请注意,您的lodash配置确实指定了'index.js',大概是导致在导入lodash时加载了/node_modules/lodash/index.js,这就是为什么这样的原因。

如果在systemjs配置中为xml2js指定一个“main”,它指向lib/xml2js.js,则systemjs应该能够正确找到它。

10-06 14:21