如何使用
process.cwd()
在带有TypeScript的Angular2组件中?我必须导入什么?
构造函数中的以下内容
console.log("Where I am: ", process.cwd());
输出错误:
ORIGINAL EXCEPTION: ReferenceError: process is not defined
ORIGINAL STACKTRACE:
ReferenceError: process is not defined
由于我可以在JavaScript文件中使用process.cwd((和__dirname,我想知道,为什么它不能立即工作?
我必须导入什么?是我对nodeJS上瘾吗?或者我的错误假设:节点中的工作必须无处不在?
试试这个:
declare var process: any;
将其置于@Component
之前;它不会给你完全的智能,但它满足编译器的要求。