我已经安装了软件包
npm install local-devices
并以
的形式导入angular.json
中
"scripts": [
"./node_modules/local-devices/index.js"
]
,并在global variable
中声明为src/typings.d.ts
declare let findLocalDevices: any
下面是package
文件包的index.js
文件结构和local-devices
然后尝试将其作为
在组件中使用console.log(findLocalDevices())
但出现错误
findLocalDevices未定义
如何导入,请指导!!!
答案 0 :(得分:1)
import * as findLocalDevices from 'local-devices'
,并且在任何方法内都将其用作
ngOnInit() {
console.log(findLocalDevices());
}
您可能还需要在child_process / mz上安装其他软件包