在Ionic 2中使用NodeJS.Timer时找不到命名空间NodeJS

时间:2017-07-25 23:59:44

标签: angular ionic-framework ionic2

我正在尝试将https://github.com/bevacqua/dragula/issues/289#issuecomment-277143172上的一些代码用于我的Ionic项目。

运行代码时出现错误Cannot find namespace 'NodeJS',错误引用touchTimeout: NodeJS.Timer;

如何调整以下代码以使NodeJS.Timer行有效?

import { Directive, ElementRef, HostListener } from '@angular/core';

@Directive({ selector: '[delayDragLift]' })
export class DelayDragLiftDirective {

    dragDelay: number = 200; // milliseconds
    draggable: boolean = false;
    touchTimeout: NodeJS.Timer;

    @HostListener('touchmove', ['$event'])
    // @HostListener('mousemove', ['$event'])
    onMove(e: Event) {
        if (!this.draggable) {
            e.stopPropagation();
            clearTimeout(this.touchTimeout);
        }
    }

    @HostListener('touchstart', ['$event'])
    // @HostListener('mousedown', ['$event'])
    onDown(e: Event) {
        this.touchTimeout = setTimeout(() => {
            this.draggable = true;
        }, this.dragDelay);
    }

    @HostListener('touchend', ['$event'])
    // @HostListener('mouseup', ['$event'])
    onUp(e: Event) {
        clearTimeout(this.touchTimeout);
        this.draggable = false;
    }

    constructor(private el: ElementRef) {
    }
}

3 个答案:

答案 0 :(得分:24)

打开src/tsconfig.app.json *。

"node"添加到"types"数组。

示例:

{
  "extends": "../tsconfig.json",
  "compilerOptions": {
    "outDir": "../out-tsc/app",
    "baseUrl": "./",
    "module": "es2015",
    "types": [
      "node"
    ]
  },
  "exclude": [
    "test.ts",
    "**/*.spec.ts"
  ]
}

*如果此文件不存在,请将指定的部分添加到根文件夹中的tsconfig.json

答案 1 :(得分:2)

解决此问题的一种快速方法是here

分别将setTimeoutclearInterval分别更改为window.setTimeoutwindow.clearInterval。例如,您的onDown变为:

onDown(e: Event) {
    this.touchTimeout = window.setTimeout(() => {
        this.draggable = true;
    }, this.dragDelay);
}

然后,您的声明变为:

this.touchTimeout: number | undefined;

答案 2 :(得分:0)

对我来说,请解决tsconfig.json

compilerOptions 中的 typeRoots 成员
{
  "extends": "../tsconfig.json",
  "compilerOptions": {
    "outDir": "../out-tsc/app",
    "baseUrl": "./",
    "module": "es2015",
    "typeRoots": [
         "node_modules/@types"
     ]
  },
  "exclude": [
    "test.ts",
    "**/*.spec.ts"
  ]
}