node.js - 找不到模块 'angular2/angular2'

标签 node.js typescript angular

我正在使用 angular2 和 gulp 开发一个 Node 应用程序。我写了一个组件文件login.ts如下:

import {Component, View} from 'angular2/angular2';
import {FormBuilder,  formDirectives } from 'angular2/forms';
@Component({
  selector: 'login',
  injectables: [FormBuilder]
})
@View({
  templateUrl: '/scripts/src/components/login/login.html',
  directives: [formDirectives]
})

export class login {

}

我的 bootstrap.ts 文件是:

import {bootstrap} from 'angular2/angular2';

import {login} from './components/login/login';

bootstrap(login);

但是当我编译这些文件时,它给了我以下错误:

client\bootstrap.ts(1,25): error TS2307: Cannot find module 'angular2/angular2'.
client\components\login\login.ts(1,31): error TS2307: Cannot find module 'angular2/angular2
client\components\login\login.ts(2,45): error TS2307: Cannot find module 'angular2/forms'.

这是我的 tsconfig.json:

{
    "compilerOptions": {
        "target": "es5",
        "module": "commonjs",
        "sourceMap": true,
        "watch": true,
        "removeComments": true,
        "moduleResolution": "node",
        "emitDecoratorMetadata": true,
        "experimentalDecorators": true
    }
}

我已经安装了 angular2 的输入:

tsd install angular2 --save

请帮助修复错误。

最佳答案

@simon 所说的 yups 错误在导入中。但是对于进一步的进口,我已经发布了这个答案,这可能对其他人也有用。

import {Component, View, Directive, Input, Output, Inject, Injectable, provide} from 'angular2/core'; 

import {bootstrap} from 'angular2/platform/browser';

import {CORE_DIRECTIVES, FORM_DIRECTIVES, NgClass, NgIf  NgForm, Control, ControlGroup, FormBuilder, Validators} from 'angular2/common';

import {RouteConfig, ROUTER_DIRECTIVES, ROUTER_PROVIDERS, Router, LocationStrategy, HashLocationStrategy} from 'angular2/router';

import {Http, HTTP_PROVIDERS, RequestOptions, Headers, Request, RequestMethod} from 'angular2/http'

更新-

@View 现在已经不在 angular2 中了,所以不需要导入

import {view} from 'angular2/core'

更新 2

由于 angular2 在 RC 中,因此所有导入都有重大变化,如果所有更新的导入,这里是列表 -

angular2/core -> @angular/core
angular2/compiler -> @angular/compiler
angular2/common -> @angular/common
angular2/platform/common -> @angular/common
angular2/common_dom -> @angular/common
angular2/platform/browser -> @angular/platform-browser-dynamic
angular2/platform/server -> @angular/platform-server
angular2/testing -> @angular/core/testing
angular2/upgrade -> @angular/upgrade
angular2/http -> @angular/http
angular2/router -> @angular/router
angular2/platform/testing/browser -> @angular/platform-browser-dynamic/testing

关于node.js - 找不到模块 'angular2/angular2',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34697466/

相关文章:

javascript - 如何添加推送到返回过滤数组的 getter 的功能?

module - typescript 外部模块可以有循环依赖吗?

javascript - <a> 点击不工作但 href 是正确的并且工作

Angular - 模板中的错误导致无限循环

javascript - 在移动模式下隐藏 Angular Material 中的一些列

node.js - 使用express-validator参数存在

javascript - NodeJS : secure some routes with middleware

javascript - 如何检索 mat-checkbox 值

javascript - Node.js 什么是对象克隆?

javascript - 如何在 Linux/Mac/Windows 上的 Node/Electron 应用程序中获取浏览器事件选项卡 URL?