Angular printjs:错误TypeError:Object(...)不是一个函数

时间:2018-06-29 10:45:24

标签: javascript angular typescript printjs

我正在尝试在Angular中使用printJS并打印图像(PNG)。我做了导入:

    import { printJS } from "print-js/dist/print.min.js";

然后我根据documentation在函数中执行此打印代码:

    printJS('no-image.png', 'image');

我收到以下错误: enter image description here

我找不到解决此问题的方法。

1 个答案:

答案 0 :(得分:5)

我认为您需要为此库使用默认导入:

import printJS from "print-js";

此外,对于NPM软件包,切勿直接从js路径导入。通常情况下,您只需要从软件包本身中导入print-js