如何将 qrcode-generator 导入 angular 2 应用程序?

how import qrcode-generator into angular 2 app?

我正在尝试使用 qrcode-generator in my app but no success with my settings even though it's working in plunker,在我的应用程序中,我正在使用 angular-cli 和 angular 2.rc-1.
重现步骤:

ng new newAppName
cd newAppName
ng serve

那就行了。

npm i qrcode-generator // (note this is missing the svg support).
ng serve // still work

然后更改2个文件中的配置。 angular-cli-build.js:

var Angular2App = require('angular-cli/lib/broccoli/angular2-app');
module.exports = function(defaults) {
  return new Angular2App(defaults, {
    vendorNpmFiles: [
      'systemjs/dist/system-polyfills.js',
      'systemjs/dist/system.src.js',
      'zone.js/dist/**/*.+(js|js.map)',
      'es6-shim/es6-shim.js',
      'reflect-metadata/**/*.+(js|js.map)',
      'rxjs/**/*.+(js|js.map)',
      'qrcode-generator/**/*.+(js|js.map)',
      '@angular/**/*.+(js|js.map)'
    ]
  });
};

和系统-config.ts:

/**********************************************************************************
 * User Configuration.
 *********************************************************************************/
/** Map relative paths to URLs. */
const map: any = {
  'qrcode-generator': 'vendor/qrcode-generator'
};
const packages: any = {
  'vendor/qrcode-generator': {
    main: 'qrcode',
    defaultExtension: 'js'
  }
};
// ... the rest is the same

编辑new-app-name.component.ts并像这样在其中导入二维码生成器

// vscode underline the qrcode-generator string and complai about not finding it
import * as qrcode from 'qrcode-generator'; 

然后 ng serve 仍然是 运行 错误消息:

/path/to/project/newAppName/tmp/broccoli_type_script_compiler-input_base_path-jscpZEq5.tmp/0/src/app/new-app-name.component.ts (3, 25): Cannot find module 'qrcode-generator'.

我尝试通过将其添加到 typings.json 文件来为其安装类型:

"globalDependencies": {
    "qrcode-generator": "registry:dt/qrcode-generator#0.0.0+20160412152159"
  }

然后 运行:

typings i

安装成功,但还是一样的错误。 angular-cli 版本:

angular-cli: 1.0.0-beta.5
node: 6.2.0
os: linux x64

我是不是漏掉了什么?
我还缺少其他配置吗?

我不确定您的具体要求,但这里有一个 AngularJS(版本 1)应用程序,它具有 QR 码生成器:

http://quir.li/qr.html

你可以

  • 输入文字
  • select错误代码级别
  • select一个尺码
  • View/Copy/download来自屏幕的二维码

我是该页面的作者,但二维码生成器是 jsqrencode by tz@execpc.com

我的源代码在https://github.com/suterma/quirli/blob/master/website/qr.html

多亏了 @JavascriptMick from angular-cli's gitter 我终于能够导入这个了 我做了以下操作,首先将格式设置为全局格式:

'vendor/qrcode-generator': {
    format: 'global',
    main: 'qrcode.js'
  }

然后在导入时这样做:

import 'qrcode-generator';
declare let qrcode;

希望对您有所帮助。